The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A164335 Quintic recurrence sequence a(0) = 1, a(n) = n*a(n-1)^5. 1
1, 1, 2, 96, 32614907904, 184523119031305377426211669050277696887837070322565120 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Number of different orderings for n-input trees in a Free Quinary Decision Diagram.
a(7) onward have more than 1000 digits. - G. C. Greubel, Sep 14 2017
LINKS
FORMULA
a(0) = 1, a(n) = n*a(n-1)^5.
MATHEMATICA
nxt[{n_, a_}] := {n + 1, (n + 1) a^5}; NestList[nxt, {0, 1}, 5][[All, 2]] (* G. C. Greubel, Sep 14 2017 *)
PROG
(PARI) a(n) = if (n==0, 1, n*a(n-1)^5); \\ Michel Marcus, Sep 14 2017
CROSSREFS
Quintic extension of A052129, A123851 and A164334.
Sequence in context: A057528 A346565 A224986 * A132206 A139884 A297423
KEYWORD
nonn
AUTHOR
David Willingham (D.Willingham(AT)wmin.ac.uk), Aug 13 2009
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 May 21 04:19 EDT 2024. Contains 372720 sequences. (Running on oeis4.)