login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A252730 a(n) = P_n(n) with P_0(z) = z+1 and P_n(z) = z + P_{n-1}(z)*(P_{n-1}(z)-z) for n>1. 2
1, 3, 17, 871, 4870849, 483209576974811, 36956045653220845240164417232897, 8498748758632331927648392184620600167779995785955324343380396911247 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
A. V. Aho and N. J. A. Sloane, Some doubly exponential sequences, Fibonacci Quarterly, Vol. 11, No. 4 (1973), pp. 429-437, alternative link.
MAPLE
p:= proc(n) option remember;
z-> z+ `if`(n=0, 1, p(n-1)(z)*(p(n-1)(z)-z))
end:
a:= n-> p(n)(n):
seq(a(n), n=0..8);
MATHEMATICA
p[n_] := p[n] = Function[z, z + If[n == 0, 1, p[n-1][z]*(p[n-1][z] - z)]];
a[n_] := p[n][n];
Table[a[n], {n, 0, 8}] (* Jean-François Alcover, Jun 12 2018, from Maple *)
CROSSREFS
Main diagonal of A177888.
Sequence in context: A309060 A270816 A217957 * A362647 A225728 A351590
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Dec 20 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)