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!)
A345077 a(0) = 1; a(n) = 6 * Sum_{k=1..n} binomial(n,k) * a(k-1). 6
1, 6, 48, 414, 3876, 38946, 416808, 4722774, 56379756, 706236426, 9250945008, 126342991614, 1794459834036, 26445918969906, 403610795535288, 6367606516836774, 103683034842399996, 1739933892930544986, 30052751213767045248, 533635421576480845134, 9730601644306627161156 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = 1 + 6 * x * A(x/(1 - x)) / (1 - x)^2.
MATHEMATICA
a[0] = 1; a[n_] := a[n] = 6 Sum[Binomial[n, k] a[k - 1], {k, 1, n}]; Table[a[n], {n, 0, 20}]
nmax = 20; A[_] = 0; Do[A[x_] = 1 + 6 x A[x/(1 - x)]/(1 - x)^2 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A005399 A366942 A258790 * A244038 A037184 A179075
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 4 15:39 EDT 2024. Contains 372254 sequences. (Running on oeis4.)