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!)
A363311 Expansion of g.f. A(x) satisfying A(x) = 1 + x*(A(x)^3 + A(x)^5). 12
1, 2, 16, 180, 2360, 33760, 510928, 8043440, 130371936, 2161066432, 36465401344, 624274702464, 10816259970048, 189305983870208, 3341924242051840, 59437975940616960, 1064030847809734144, 19157066319365860352, 346663014660754833408, 6301645517153393121280 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: A(x) = Sum_{n>=0} a(n)*x^n may be defined by the following.
(1) A(x) = 1 + x*(A(x)^3 + A(x)^5).
(2) A(x) = ((B(x) - 1)/x)^(1/5) where B(x) is the g.f. of A363310.
(3) a(n) = Sum_{k=0..n} binomial(n, k)*binomial(3*n+2*k+1, n)/(3*n+2*k+1) for n >= 0.
D-finite with recurrence +8*n*(9639909229907389*n -4332180801077160)* (4*n+1) *(2*n-1) *(4*n-1) *a(n) +(-76286895522125418545*n^5 +381775644252842912682*n^4 -1033993649015194853931*n^3 +1551245138730960078498*n^2 -1139936487176542639744*n +315922393907140666080) *a(n-1) +2*(272671960126472445261*n^5 -3010900995907383509536*n^4 +12907236726784549786263*n^3 -27012522362058892089464*n^2 +27708850835094249342996*n -11174516509692301247280) *a(n-2) +4*(-627566489435411923*n^5 +144061968293307107646*n^4 -1706290600068411299693*n^3 +7720188970563268791354*n^2 -15561118085635458987024*n +11755034318370549299520) *a(n-3) -8*(n-4) *(696748847001815555*n^4 -19100265029551686306*n^3 +142472091583377235329*n^2 -415309555491080054458*n +422902881832258952040) *a(n-4) -96*(n-4) *(n-5)*(3*n-13) *(2465432947213573*n -7363340799047272) *(3*n-14) *a(n-5)=0. - R. J. Mathar, Jul 18 2023
a(n) = (1/n) * Sum_{k=0..floor(n-1)/2} 2^(n-k) * binomial(n,k) * binomial(4*n-k,n-1-2*k) for n > 0. - Seiichi Manyama, Apr 01 2024
EXAMPLE
G.f.: A(x) = 1 + 2*x + 16*x^2 + 180*x^3 + 2360*x^4 + 33760*x^5 + 510928*x^6 + 8043440*x^7 + 130371936*x^8 + 2161066432*x^9 + 36465401344*x^10 + ...
where A(x) = 1 + x*(A(x)^3 + A(x)^5).
RELATED SERIES.
A(x)^3 = 1 + 6*x + 60*x^2 + 740*x^3 + 10200*x^4 + 150576*x^5 + 2328640*x^6 + 37242096*x^7 + ...
A(x)^5 = 1 + 10*x + 120*x^2 + 1620*x^3 + 23560*x^4 + 360352*x^5 + 5714800*x^6 + 93129840*x^7 + ... + A363310(n-1)*x^n + ...
MAPLE
A363311 := proc(n)
add(binomial(n, k)*binomial(3*n+2*k+1, n)/(3*n+2*k+1), k=0..n) ;
end proc:
seq(A363311(n), n=0..70) ; # R. J. Mathar, Jul 18 2023
PROG
(PARI) {a(n) = sum(k=0, n, binomial(n, k)*binomial(3*n+2*k+1, n)/(3*n+2*k+1) )}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A206988 A217360 A371669 * A052606 A011553 A291816
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 29 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 8 00:02 EDT 2024. Contains 373206 sequences. (Running on oeis4.)