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!)
A164334 Quartic recurrence sequence a(0) = 1, a(n) = n*a(n-1)^4. 2
1, 1, 2, 48, 21233664, 1016411962239204484414785454080 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Number of different orderings for n-input trees in a Free Quaternary Decision Diagram.
The next term has 121 digits. - Harvey P. Dale, Dec 19 2016
LINKS
FORMULA
a(0) = 1, a(n) = n*a(n-1)^4.
MATHEMATICA
nxt[{n_, a_}]:={n+1, (n+1)a^4}; NestList[nxt, {0, 1}, 5][[All, 2]] (* Harvey P. Dale, Dec 19 2016 *)
PROG
(PARI) a(n) = if (n==0, 1, n*a(n-1)^4); \\ Michel Marcus, Sep 14 2017
CROSSREFS
Quartic extension of A052129 and A123851.
Sequence in context: A152688 A046873 A261125 * A100540 A007861 A296142
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 April 25 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)