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!)
A366025 Expansion of (1/x) * Series_Reversion( x*(1-x)/(1+x^5) ). 1
1, 1, 2, 5, 14, 43, 139, 465, 1595, 5577, 19804, 71228, 258946, 950030, 3513050, 13079920, 48993149, 184490361, 698020080, 2652192675, 10115878915, 38717526745, 148655862210, 572412768275, 2209969761924, 8553073927858, 33176952295730, 128960722306128 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f. satisfies A(x) = 1 + x*A(x)^2*(1 + x^4*A(x)^3).
a(n) = Sum_{k=0..floor(n/5)} binomial(n-4*k,k) * binomial(2*n-5*k+1,n-4*k)/(2*n-5*k+1) = (1/(n+1)) * Sum_{k=0..floor(n/5)} binomial(n+1,k) * binomial(2*n-5*k,n-5*k).
MATHEMATICA
CoefficientList[InverseSeries[Series[x(1-x)/(1+x^5), {x, 0, 28}], x]/x, x] (* Stefano Spezia, Sep 26 2023 *)
PROG
(PARI) a(n) = sum(k=0, n\5, binomial(n-4*k, k)*binomial(2*n-5*k+1, n-4*k)/(2*n-5*k+1));
(PARI) Vec(serreverse(x*(1-x)/(1+x^5)+O(x^30))/x) \\ Michel Marcus, Sep 26 2023
CROSSREFS
Sequence in context: A052301 A071755 A149879 * A366042 A149880 A066351
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 26 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 August 18 13:06 EDT 2024. Contains 375269 sequences. (Running on oeis4.)