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!)
A371669 G.f. satisfies A(x) = 1 + x * A(x)^3 * (1 + A(x))^2/2. 0
1, 2, 16, 178, 2300, 32380, 481932, 7458370, 118809868, 1935217180, 32083715344, 539615356884, 9184652815816, 157908543871712, 2738272978314500, 47837620415491554, 841151610003847564, 14874918252400486060, 264381545177102073600, 4720297172922980155740 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = (1/n) * Sum_{k=0..floor(n-1)/2} 2^(n-2*k) * binomial(n,k) * binomial(4*n-k,n-1-2*k) for n > 0.
PROG
(PARI) a(n) = if(n==0, 1, sum(k=0, (n-1)\2, 2^(n-2*k)*binomial(n, k)*binomial(4*n-k, n-1-2*k))/n);
CROSSREFS
Cf. A371661.
Sequence in context: A138014 A206988 A217360 * A363311 A052606 A011553
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Apr 02 2024
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 July 21 06:08 EDT 2024. Contains 374463 sequences. (Running on oeis4.)