cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A304401 O.g.f. A(x) satisfies: [x^n] exp( n^3 * x*A(x) ) * (2 - A(x)) = 0 for n > 0.

This page as a plain text file.
%I A304401 #11 Jun 06 2018 21:32:45
%S A304401 1,1,32,3618,845824,332389375,196888240512,164288952970296,
%T A304401 184344892426059776,268830705445490506509,496348897291481486672000,
%U A304401 1136486246811467501138927540,3173564392477075053313688696832,10660730426979559461604460186833401,42595326050479099018430338636152049280,200526023793925980859314834103239034380000
%N A304401 O.g.f. A(x) satisfies: [x^n] exp( n^3 * x*A(x) ) * (2 - A(x)) = 0 for n > 0.
%C A304401 Note: the factorial series, F(x) = Sum_{n>=0} n! * x^n, satisfies:
%C A304401 (1) [x^n] exp( n * x*F(x) ) * (2 - F(x)) = 0 for n > 0,
%C A304401 (2) [x^n] exp( x*F(x) ) * (n + 1 - F(x)) = 0 for n > 0.
%C A304401 It is remarkable that this sequence should consist entirely of integers.
%C A304401 Note: a(n) is divisible by n^3 for n >= 1.
%e A304401 O.g.f.: A(x) = 1 + x + 32*x^2 + 3618*x^3 + 845824*x^4 + 332389375*x^5 + 196888240512*x^6 + 164288952970296*x^7 + 184344892426059776*x^8 + ...
%e A304401 ILLUSTRATION OF SEFINITION.
%e A304401 The table of coefficients of x^k/k! in exp( n^3 * x*A(x) ) * (2 - A(x)) begins:
%e A304401 n=0: [1, -1, -64, -21708, -20299776, -39886725000, ...];
%e A304401 n=1: [1, 0, -63, -21710, -20300931, -39887501724, ...];
%e A304401 n=2: [1, 7, 0, -21052, -20280064, -39880261512, ...];
%e A304401 n=3: [1, 26, 665, 0, -19381155, -39710564418, ...];
%e A304401 n=4: [1, 63, 4032, 252340, 0, -37416032136, ...];
%e A304401 n=5: [1, 124, 15561, 1977542, 245086349, 0, ...];
%e A304401 n=6: [1, 215, 46592, 10194660, 2254128384, 485581472376, 0, ...]; ...
%e A304401 in which the main diagonal is all zeros after the initial term, illustrating that [x^n] exp( n^3 * x*A(x) ) * (2 - A(x)) = 0 for n > 0.
%e A304401 Terms along the secondary diagonal in the above table are divisible by the differences of cubes: [1, 7/7, 665/19, 252340/37, 245086349/61, 485581472376/91, ...] = [1, 1, 35, 6820, 4017809, 5336060136, ...].
%e A304401 RELATED SERIES.
%e A304401 exp( x*A(x) ) = 1 + x + 3*x^2/2! + 199*x^3/3! + 87625*x^4/4! + 101938881*x^5/5! + 239933646571*x^6/6! + 993998976594583*x^7/7! + 6632090620377452049*x^8/8! + ...
%e A304401 Note that the factorial series
%e A304401 F(x) = 1 + x + 2!*x^2 + 3!*x^3 + 4!*x^4 + 5!*x^5 + ... + n!*x^n + ...
%e A304401 satisfies [x^n] exp( n*x*F(x) ) * (2 - F(x)) = 0 for n > 0.
%o A304401 (PARI) {a(n) = my(A=[1],m); for(i=1,n, A=concat(A,0); m=#A; A[m] = Vec( exp( (m-1)^3 * x * Ser(A) ) * (2 - Ser(A)) )[m] );A[n+1]}
%o A304401 for(n=0,20, print1(a(n),", "))
%Y A304401 Cf. A304400.
%K A304401 nonn
%O A304401 0,3
%A A304401 _Paul D. Hanna_, May 25 2018