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!)
A343975 a(0) = 1; a(n) = 3 * Sum_{k=1..n} binomial(n,k) * a(k-1). 6
1, 3, 15, 81, 489, 3237, 23211, 178707, 1467051, 12768345, 117263829, 1131901521, 11444383251, 120847326879, 1329303053391, 15197269729689, 180211641841353, 2212525627591533, 28078380387448515, 367782119667874083, 4965441830591976339, 69014083524412401873, 986364827548578356421 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = 1 + 3 * x * A(x/(1 - x)) / (1 - x)^2.
MATHEMATICA
a[0] = 1; a[n_] := a[n] = 3 Sum[Binomial[n, k] a[k - 1], {k, 1, n}]; Table[a[n], {n, 0, 22}]
nmax = 22; A[_] = 0; Do[A[x_] = 1 + 3 x A[x/(1 - x)]/(1 - x)^2 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A163470 A122868 A264225 * A255676 A015680 A371516
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 April 19 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)