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!)
A230218 G.f. A(x) satisfies: [x^n] A(x)^(n^2+n+1) = 0 for n>1. 7
1, 1, -3, 14, -85, 504, -4424, 6796, -878157, -25703710, -1270518018, -65772588300, -3848787714746, -248212765567326, -17520121174143210, -1343050785659060872, -111112550557260635229, -9867409274482580015370, -936234289413196544207234, -94522404087905722536648780 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
for n>0, a(n) is odd iff n is a power of 2 (conjecture).
G.f. A(x) satisfies:
(1) A(x) = F(x/A(x)) where F(x) = A(x*F(x)) is the g.f. of A185072.
(2) A(x) = G(x/A(x)^2) where G(x) = A(x*G(x)^2) is the g.f. of A229041.
a(n) ~ -c * 2^(2*n) *n^(n-5/2) / (exp(n) * d^n * (2-d)^n), where d = -LambertW(-2*exp(-2)) = -A226775 = 0.40637573995995990767695812412483975821... and c = 0.015106126717978... - Vaclav Kotesovec, Sep 27 2017
EXAMPLE
G.f.: A(x) = 1 + x - 3*x^2 + 14*x^3 - 85*x^4 + 504*x^5 - 4424*x^6 +...
Coefficients of x^k in the powers A(x)^(n^2+n+1) of g.f. A(x) begin:
n=0: [1, 1, -3, 14, -85, 504, -4424, 6796, ...];
n=1: [1, 3, -6, 25, -153, 819, -8664, -18360, ...];
n=2: [1, 7, 0, 7, -98, 210, -10122, -141525, ...];
n=3: [1,13, 39, 0, -78, -819, -15483, -380952, ...];
n=4: [1,21, 147, 364, 0, -2457, -35805, -821916, ...];
n=5: [1,31, 372, 2139, 5580, 0, -91698, -1792947, ...];
n=6: [1,43, 774, 7525, 42097, 125517, 0, -4097298, ...];
n=7: [1,57, 1425, 20482, 185877, 1089270, 3791298, 0, ...];
n=8: [1,73, 2409, 47450, 619697, 5619978, 35621518, 144591976, 0, ...]; ...
where the coefficients of x^n in A(x)^(n^2+n+1) all equal zero for n>1.
ODD TERMS:
For n>0, a(n) appears to be odd only when n is a power of 2:
a(1) = 1;
a(2) = -3;
a(4) = -85;
a(8) = -878157;
a(16) = -111112550557260635229;
a(32) = -886203693344229341179357569730608605545213045330679133; ...
PROG
(PARI) {a(n)=local(A=[1, 1]); for(m=2, n, A=concat(A, 0); A[#A]=-Vec(Ser(A)^(m^2+m+1))[m+1]/(m^2+m+1)); A[n+1]}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A354003 A324237 A352887 * A301934 A160881 A263187
KEYWORD
sign
AUTHOR
Paul D. Hanna, Oct 11 2013
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 21 00:58 EDT 2024. Contains 372720 sequences. (Running on oeis4.)