The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A351053 G.f. A(x) satisfies: A(x) = x + x^2 * A(x/(1 - 3*x)) / (1 - 3*x). 4
0, 1, 0, 1, 6, 28, 126, 613, 3438, 22159, 157362, 1189126, 9436320, 78690781, 692478684, 6439539457, 63106488618, 648453907216, 6952719052134, 77521908188737, 897132401326458, 10764085132255807, 133774484448519294, 1720018195807299418, 22847325911461934352 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Shifts 2 places left under 3rd-order binomial transform.
LINKS
FORMULA
a(0) = 0, a(1) = 1; a(n) = Sum_{k=0..n-2} binomial(n-2,k) * 3^k * a(n-k-2).
MATHEMATICA
nmax = 24; A[_] = 0; Do[A[x_] = x + x^2 A[x/(1 - 3 x)]/(1 - 3 x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 0; a[1] = 1; a[n_] := a[n] = Sum[Binomial[n - 2, k] 3^k a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 24}]
CROSSREFS
Sequence in context: A002693 A289779 A117423 * A171859 A338584 A084778
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 03 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 May 14 11:40 EDT 2024. Contains 372532 sequences. (Running on oeis4.)