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!)
A236953 E.g.f. satisfies: A'(x) = A(x)^7 / A(-x) with A(0) = 1. 5
1, 1, 8, 106, 2192, 57016, 1900928, 73712416, 3392081792, 174804246016, 10262192027648, 659665274853376, 47102181734254592, 3627986771528559616, 305130092337642733568, 27389239435315827367936, 2651535737853039676424192, 271778192160406582640214016, 29764289917739954089348825088 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: 1/(1 - 7*Series_Reversion( Integral 1/(1 - 49*x^2)^(1/7) dx ))^(1/7).
EXAMPLE
E.g.f.: A(x) = 1 + x + 8*x^2/2! + 106*x^3/3! + 2192*x^4/4! + 57016*x^5/5! +...
Related series.
A(x)^7 = 1 + 7*x + 98*x^2/2! + 1960*x^3/3! + 52136*x^4/4! + 1709512*x^5/5! +...
Note that 1 - 1/A(x)^7 is an odd function:
1 - 1/A(x)^7 = 7*x - 98*x^3/3! - 19208*x^5/5! - 14137088*x^7/7! -...
where Series_Reversion((1 - 1/A(x)^7)/7) = Integral 1/(1-49*x^2)^(1/7) dx.
PROG
(PARI) /* By definition A'(x) = A(x)^7 / A(-x): */
{a(n)=local(A=1); for(i=0, n, A=1+intformal(A^7/subst(A, x, -x) +x*O(x^n) )); n!*polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
(PARI) {a(n)=local(A=1); A=1/(1-7*serreverse(intformal(1/(1-49*x^2 +x*O(x^n))^(1/7))))^(1/7); n!*polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A369512 A112701 A099695 * A345474 A000845 A199658
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 09 2014
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 April 23 13:11 EDT 2024. Contains 371913 sequences. (Running on oeis4.)