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!)
A345081 a(0) = 1; a(n) = 8 * Sum_{k=1..n} binomial(n,k) * a(k-1). 6
1, 8, 80, 856, 9824, 119912, 1547376, 21007992, 298874496, 4440618120, 68706037904, 1104224971416, 18394192882336, 316974497161384, 5640790811468976, 103503851543959224, 1955546066369814208, 37994858794236710088, 758272809049577019600, 15527828509092566876888 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = 1 + 8 * x * A(x/(1 - x)) / (1 - x)^2.
MATHEMATICA
a[0] = 1; a[n_] := a[n] = 8 Sum[Binomial[n, k] a[k - 1], {k, 1, n}]; Table[a[n], {n, 0, 19}]
nmax = 19; A[_] = 0; Do[A[x_] = 1 + 8 x A[x/(1 - x)]/(1 - x)^2 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A136949 A346178 A102592 * A320759 A233123 A269796
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jun 07 2021
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 8 15:37 EDT 2024. Contains 372340 sequences. (Running on oeis4.)