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!)
A258878 E.g.f.: S(x) = Series_Reversion( Integral 1/(1-x^3)^(1/3) dx ), where the constant of integration is zero. 5
1, -2, -20, -3320, -1598960, -1757280800, -3687555924800, -13169930119702400, -73877683147510880000, -613509458527719828800000, -7207218902820454669458560000, -115535941439664355284062432000000, -2454583328787383660694513356633600000, -67459240631654340522067311327301145600000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
E.g.f.: S(x) = Series_Reversion( Sum_{n>=0} A178575(n)*x^(3*n+1)/(3*n+1)! ).
E.g.f.: Let C(x) = Sum_{n>=0} a(n)*x^(3*n)/(3*n)! and S(x) = Sum_{n>=0} a(n)*x^(3*n+1)/(3*n+1)! then C(x) and S(x) satisfy:
(1) C(x)^3 + S(x)^3 = 1,
(2) S'(x) = C(x),
(3) C'(x) = -S(x)^2/C(x),
(4) C(x)^2 * C'(x) + S(x)^2 * S'(x) = 0,
(5) S(x)/C(x) = Integral 1/C(x)^3 dx,
(6) S(x)/C(x) = Series_Reversion( Integral 1/(1+x^3) dx ) = Series_Reversion( Sum_{n>=0} (-1)^n * x^(3*n+1)/(3*n+1) ).
EXAMPLE
E.g.f. with offset 0 is C(x) and e.g.f. with offset 1 is S(x) where:
C(x) = 1 - 2*x^3/3! - 20*x^6/6! - 3320*x^9/9! - 1598960*x^12/12! - 1757280800*x^15/15! - 3687555924800*x^18/18! -...
S(x) = x - 2*x^4/4! - 20*x^7/7! - 3320*x^10/10! - 1598960*x^13/13! - 1757280800*x^16/16! - 3687555924800*x^19/19! -...
such that C(x)^3 + S(x)^3 = 1:
C(x)^3 = 1 - 6*x^3/3! + 180*x^6/6! - 3240*x^9/9! + 641520*x^12/12! + 455479200*x^15/15! + 798961838400*x^18/18! +...
S(x)^3 = 6*x^3/3! - 180*x^6/6! + 3240*x^9/9! - 641520*x^12/12! - 455479200*x^15/15! - 798961838400*x^18/18! -...
Related Expansions.
(1) The series reversion of S(x) is Integral 1/(1-x^3)^(1/3) dx:
Series_Reversion(S(x)) = x + 2*x^4/4! + 160*x^7/7! + 62720*x^10/10! +...
1/(1-x^3)^(1/3) = 1 + 2*x^3/3! + 160*x^6/6! + 62720*x^9/9! + 68992000*x^12/12! + 163235072000*x^15/15! +...+ A178575(n)*x^(3*n)/(3*n)! +...
(2) C(x)^2*C'(x) = -S(x)^2*S'(x) = 0, where:
C(x)^2*C'(x) = -2*x^2/2! + 60*x^5/5! - 1080*x^8/8! + 213840*x^11/11! + 151826400*x^14/14! + 266320612800*x^17/17! -...
S(x)^2*S'(x) = 2*x^2/2! - 60*x^5/5! + 1080*x^8/8! - 213840*x^11/11! - 151826400*x^14/14! - 266320612800*x^17/17! -...
(3) d/dx C(x)^2 = -2*S(x)^2, where:
C(x)^2 = 1 - 4*x^3/3! + 40*x^6/6! + 80*x^9/9! + 93280*x^12/12! + 60209600*x^15/15! + 83885507200*x^18/18! +...
S(x)^2 = 2*x^2/2! - 20*x^5/5! - 40*x^8/8! - 46640*x^11/11! - 30104800*x^14/14! - 41942753600*x^17/17! -...
(4) d/dx S(x)/C(x) = 1/C(x)^3:
1/C(x) = 1 + 2*x^3/3! + 100*x^6/6! + 23480*x^9/9! + 15238960*x^12/12! + 21091796000*x^15/15! + 53393583707200*x^18/18! +...
1/C(x)^3 = 1 + 6*x^3/3! + 540*x^6/6! + 184680*x^9/9! + 157600080*x^12/12! +...
S(x)/C(x) = x + 6*x^4/4! + 540*x^7/7! + 184680*x^10/10! + 157600080*x^13/13! + 270419925600*x^16/16! +...+ A258880(n)*x^(3*n+1)/(3*n+1)! +...
where
Series_Reversion(S(x)/C(x)) = x - x^4/4 + x^7/7 - x^10/10 + x^13/13 - x^16/16 +...
PROG
(PARI) /* E.g.f. Series_Reversion(Integral 1/(1-x^3)^(1/3) dx): */
{a(n)=local(S=x, C=1+x); S = serreverse( intformal( 1/(1-x^3 +x*O(x^(3*n)))^(1/3) )); (3*n+1)!*polcoeff(S, 3*n+1)}
for(n=0, 15, print1(a(n), ", "))
(PARI) /* E.g.f. C(x) with offset 0: */
{a(n)=local(S=x, C=1+x); for(i=1, n, S=intformal(C +x*O(x^(3*n))); C=1-intformal(S^2/C +x*O(x^(3*n))); ); (3*n)!*polcoeff(C, 3*n)}
for(n=0, 15, print1(a(n), ", "))
(PARI) /* E.g.f. S(x) with offset 1: */
{a(n)=local(S=x, C=1+x); for(i=1, n+1, S=intformal(C +x*O(x^(3*n))); C=1-intformal(S^2/C +x*O(x^(3*n+1))); ); (3*n+1)!*polcoeff(S, 3*n+1)}
for(n=0, 15, print1(a(n), ", "))
CROSSREFS
Sequence in context: A134476 A224732 A055746 * A060600 A356689 A346564
KEYWORD
sign
AUTHOR
Paul D. Hanna, Jun 13 2015
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 March 28 17:25 EDT 2024. Contains 371254 sequences. (Running on oeis4.)