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!)
A366267 G.f. A(x) satisfies A(x) = 1 + x + x*A(x)^4. 17
1, 2, 8, 56, 448, 3920, 36288, 349440, 3464448, 35125760, 362522624, 3795914240, 40224968704, 430579701760, 4648899846144, 50568103690240, 553632271155200, 6096025799852032, 67464070696927232, 750003531943903232, 8371814935842258944 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} binomial(3*k+1,n-k) * binomial(4*k,k)/(3*k+1).
a(n) = A366272(n) + A366272(n-1).
G.f.: A(x) = 1/B(-x) where B(x) is the g.f. of A366365.
MATHEMATICA
nmax = 20; A[_] = 1;
Do[A[x_] = 1 + x + x*A[x]^4 + O[x]^(nmax+1) // Normal, {nmax+1}];
CoefficientList[A[x], x] (* Jean-François Alcover, Mar 03 2024 *)
PROG
(PARI) a(n) = sum(k=0, n, binomial(3*k+1, n-k)*binomial(4*k, k)/(3*k+1));
CROSSREFS
Sequence in context: A333564 A291314 A354248 * A308501 A316142 A109618
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 06 2023
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 6 17:29 EDT 2024. Contains 373134 sequences. (Running on oeis4.)