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!)
A351144 G.f. A(x) satisfies: A(x) = 1 + x^2 * A(x/(1 - 3*x)) / (1 - 3*x). 5
1, 0, 1, 3, 10, 39, 181, 972, 5797, 37389, 258202, 1905681, 15016465, 125920872, 1117950913, 10452866439, 102485649754, 1050464300187, 11231883627301, 125055844922916, 1447371528438565, 17382103226123313, 216221862096537994, 2781342531957176085, 36942930754308211969 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Shifts 2 places left under 3rd-order binomial transform.
LINKS
FORMULA
a(0) = 1, a(1) = 0; 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_] = 1 + x^2 A[x/(1 - 3 x)]/(1 - 3 x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[1] = 0; 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: A074728 A087860 A307593 * A221973 A303004 A054912
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 02 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 June 8 17:52 EDT 2024. Contains 373227 sequences. (Running on oeis4.)