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!)
A304862 O.g.f. A(x) satisfies: 0 = [x^n] exp( n*(n+1) * Integral 1/A(x) dx ) / A(x), for n > 0. 4
1, 2, 4, 32, 512, 12000, 366400, 13688960, 602193152, 30397531136, 1728411805184, 109177081065472, 7578667350118400, 573143826340921344, 46886796648225349632, 4124437046595970498560, 388153835886455237115904, 38910750374376922179960832, 4139100381105952654252048384, 465644313330130076144183017472 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Note: 0 = [x^n] exp( n * Integral 1/G(x) dx ) / G(x) holds for n > 0 when G(x) = 1 + x.
Note: 0 = [x^n] exp( (n-1) * Integral 1/F(x) dx ) / F(x) holds for n > 0 when F(x) = sqrt(1 + x^2).
It is remarkable that this sequence should consist entirely of integers.
LINKS
FORMULA
a(n) ~ c * d^n * (n-1)!, where d = 4 / (-LambertW(-2*exp(-2)) * (2 + LambertW(-2*exp(-2)))) and c = 0.08310334422... - Vaclav Kotesovec, Oct 19 2020
EXAMPLE
O.g.f.: A(x) = 1 + 2*x + 4*x^2 + 32*x^3 + 512*x^4 + 12000*x^5 + 366400*x^6 + 13688960*x^7 + 602193152*x^8 + 30397531136*x^9 + 1728411805184*x^10 + 109177081065472*x^11 + 7578667350118400*x^12 + 573143826340921344*x^13 + 46886796648225349632*x^14 + 4124437046595970498560*x^15 + ...
ILLUSTRATION OF DEFINITION.
The table of coefficients of x^k in exp(n*(n+1) * Integral 1/A(x) dx)/A(x) begins:
n=0: [1, -2, 0, -24, -400, -10080, -319872, -12251008, ...];
n=1: [1, 0, -4, -80/3, -456, -165536/15, -3089536/9, ...];
n=2: [1, 4, 0, -48, -616, -66816/5, -1985184/5, ...];
n=3: [1, 10, 36, 0, -976, -93312/5, -500928, ...];
n=4: [1, 18, 140, 1648/3, 0, -83680/3, -6379648/9, ...];
n=5: [1, 28, 360, 2736, 12200, 0, -1023072, ...];
n=6: [1, 40, 756, 8880, 70664, 1800288/5, 0, ...];
n=7: [1, 54, 1400, 69256/3, 269184, 34495552/15, 599302144/45, 0, ...]; ...
in which the main diagonal is all zeros after the initial term, illustrating that 0 = [x^n] exp( n*(n+1) * Integral 1/A(x) dx ) / A(x), for n > 0.
RELATED SERIES.
1/A(x) = 1 - 2*x - 24*x^3 - 400*x^4 - 10080*x^5 - 319872*x^6 - 12251008*x^7 - 548218368*x^8 - 28018713600*x^9 - 1608234580480*x^10 + ...
exp(Integral 1/A(x) dx) = 1 + x - x^2/2! - 5*x^3/3! - 143*x^4/4! - 10279*x^5/5! - 1265009*x^6/6! - 238548701*x^7/7! - 63550271455*x^8/8! - 22650892439183*x^9/9! + ...
A'(x)/A(x) = 2 + 4*x + 80*x^2 + 1808*x^3 + 54912*x^4 + 2052736*x^5 + 90617984*x^6 + 4595611904*x^7 + 262620131840*x^8 + 16670924217344*x^9 + ...
PROG
(PARI) {a(n) = my(A=[1], m); for(i=1, n+1, m=#A; A=concat(A, 0); A[m+1] = Vec( exp(m*(m+1)*intformal(1/Ser(A))) / Ser(A) )[m+1] ); A[n+1]}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A225170 A134958 A101460 * A118992 A012509 A062740
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 01 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 April 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)