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!)
A167449 a(0)=1; a(1)=1; for a>1, a(n)=a(n-1)+((n-1)^3)*a(n-2). 1
1, 1, 2, 10, 64, 704, 8704, 160768, 3146240, 85459456, 2379068416, 87838524416, 3254378586112, 155039348776960, 7304909102465024, 432732882146443264, 25086801102965899264, 1797560686374797508608, 125049014505246260592640 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
For n>0, a(n+1)=A166469(A167448(n)).
LINKS
FORMULA
a(n) ~ (c1 + c2*(-1)^n) * n^(3*n/2) / exp(3*n/2), where c1 = 11.229547293548917938785936532203403620187829245793... and c2 = -0.20385401969014506196353281640163785658756407221649... - Vaclav Kotesovec, Aug 10 2021
MATHEMATICA
RecurrenceTable[{a[n] == a[n-1] + (n-1)^3*a[n-2], a[0] == 1, a[1] == 1}, a, {n, 0, 20}] (* Vaclav Kotesovec, Aug 08 2021 *)
nxt[{n_, a_, b_}]:={n+1, b, b+n^3 a}; NestList[nxt, {1, 1, 1}, 20][[;; , 2]] (* Harvey P. Dale, Jan 22 2024 *)
CROSSREFS
Other sequences for which a(n)=a(n-1)+((n-1)^k)*a(n-2) are (k=0) A000045, (k=1) A000085, (k=2) A000142.
Sequence in context: A318814 A371547 A130721 * A064170 A151410 A230050
KEYWORD
nonn
AUTHOR
Matthew Vandermast, Nov 09 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 28 17:47 EDT 2024. Contains 372092 sequences. (Running on oeis4.)