A092123 Largest coefficient in expansion of P(0)=x, P(n+1)=P(n)*[1+P(n)].
1, 1, 2, 10, 302, 391232, 912140731560, 6870302396056798235043564, 552249828443015013351729477795257932661645918815144
Offset: 0
Keywords
Crossrefs
Cf. A016131.
Programs
-
PARI
P(n)=if(n<1,x,P(n-1)*(P(n-1)+1))
-
PARI
a(n)=vecmax(Vec(P(n)))
Comments