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!)
A304398 G.f. A(x) satisfies: [x^n] (1+x)^((n+1)^3) / A(x) = 0 for n>0. 2
1, 8, 199, 19568, 4309702, 1628514128, 927231430126, 737350581437744, 778840734924755140, 1054020790695331268000, 1778132840285207445942196, 3659007006256230147804241040, 9023119928096184018484024831288, 26274442260784898029809836586675872, 89218495222818281880277619804533375624, 349496587851612327547463367678217875791792 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
EXAMPLE
G.f.: A(x) = 1 + 8*x + 199*x^2 + 19568*x^3 + 4309702*x^4 + 1628514128*x^5 + 927231430126*x^6 + 737350581437744*x^7 + 778840734924755140*x^8 + ...
ILLUSTRATION OF DEFINITION.
The table of coefficients of x^k in (1+x)^((n+1)^3)/A(x) begins:
n=0: [1, -7, -143, -17031, -4008021, -1560094653, -901603927833, ...;
n=1: [1, 0, -171, -18144, -4130451, -1588513680, -912609360075, ...;
n=2: [1, 19, 0, -20424, -4500552, -1670248944, -943515644316, ...;
n=3: [1, 56, 1369, 0, -5042565, -1848681000, -1008460310529, ...;
n=4: [1, 117, 6615, 221979, 0, -2071834128, -1129354648380, ...;
n=5: [1, 208, 21357, 1424544, 64174929, 0, -1267137137679, ...;
n=6: [1, 335, 55774, 6134466, 495645999, 29071716177, 0, ...; ...
in which the main diagonal is all zeros after the initial term, illustrating that [x^n] (1+x)^((n+1)^3)/A(x) = 0 for n>0.
RELATED SERIES.
1 - 1/A(x) = 8*x + 135*x^2 + 16896*x^3 + 3991125*x^4 + 1556103528*x^5 + 900047824305*x^6 + 722051918333952*x^7 + 766786063398540525*x^8 + ...
The logarithmic derivative of the g.f. A(x) begins
A'(x)/A(x) = 8 + 334*x + 54440*x^2 + 16580278*x^3 + 7958081528*x^4 + 5480891617798*x^5 + 5107502440681208*x^6 + 6182250826385760238*x^7 + ...
PROG
(PARI) {a(n) = my(A=[1]); for(i=1, n, A=concat(A, 0); m=#A; A[m] = Vec( (1+x +x*O(x^m))^(m^3)/Ser(A) )[m] ); A[n+1]}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A363986 A024287 A208703 * A020329 A232518 A229265
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 14 2018
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 June 1 12:42 EDT 2024. Contains 373023 sequences. (Running on oeis4.)