Lean4
/-- `∏ᵖ p ∣ n, f p` is custom notation for `prodPrimeFactors f n` -/
@[scoped term_parser 1000]
public meta def bigproddvd : Lean.ParserDescr✝ :=
ParserDescr.node✝ `ArithmeticFunction.bigproddvd 1022
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen (ParserDescr.symbol✝ "∏ᵖ ") Batteries.ExtendedBinder.extBinder)
(ParserDescr.symbol✝ " ∣ "))
(ParserDescr.cat✝ `term 0))
(ParserDescr.symbol✝ ", "))
(ParserDescr.cat✝ `term 67))