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!)
A096877 Expansion in power series of a parametrization of the Folium of Descartes. 1
1, -2, -10, 0, -130, 256, 236, 0, -22730, 81920, 327668, 0, 777260, 0, -7180840, 0, -1051237338, 4362076160, 22662123300, 0, 227431418372, -549755813888, -1598030872600, 0, -7086115747780, -32435593019392, -311555637408376, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Given g.f. A(x), then B(x) = x*A(x^3/4) satisfies 0 = f(B(x), B(x^2)) where f(u, v) = u^3 + v^3 - u*v.
LINKS
EXAMPLE
G.f. = 1 - 2*x - 10*x^2 - 130*x^4 + 256*x^5 + 236*x^6 - 22730*x^8 + ...
B(x) = x - 1/2*x^4 - 5/8*x^7 - 65/128*x^13 + ...
PROG
(PARI) {a(n) = my(A, A2, m); if( n<0, 0, A = 1 + O(x); m = 1; while(m <= n, m *= 2; A = subst(A, x, 4*x^2); A2 = subst(A, x, 4*x^2); A = sqrt(4*x^2*A2^2 + A^3/A2) - 2*x*A2); polcoeff(A, n))};
CROSSREFS
Sequence in context: A189865 A189880 A189871 * A058297 A349623 A113160
KEYWORD
sign
AUTHOR
Michael Somos, Jul 14 2004
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 May 14 17:50 EDT 2024. Contains 372533 sequences. (Running on oeis4.)