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!)
A351757 G.f. A(x) satisfies: A(x) = 1 + x * A(x/(1 - 3*x)) / (1 - 3*x)^2. 4
1, 1, 7, 43, 289, 2239, 19699, 192025, 2042971, 23520715, 291099349, 3849621019, 54110928355, 804827487493, 12619011606775, 207885167529523, 3587864566792753, 64705561315720135, 1216574535057705979, 23797327657083197113, 483390249416359706995 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} binomial(n,k-1) * 3^(k-1) * a(n-k).
MATHEMATICA
nmax = 20; A[_] = 0; Do[A[x_] = 1 + x A[x/(1 - 3 x)]/(1 - 3 x)^2 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, k - 1] 3^(k - 1) a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 20}]
CROSSREFS
Sequence in context: A343351 A277188 A356559 * A338675 A244938 A199483
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 18 2022
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 24 19:31 EDT 2024. Contains 371962 sequences. (Running on oeis4.)