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!)
A304861 O.g.f. A(x) satisfies: 0 = [x^n] exp( n*(n-1) * Integral 1/A(x) dx ) / A(x), for n > 0. 5
1, 0, 2, 20, 328, 7664, 231744, 8560512, 372339840, 18593869184, 1046764673152, 65518908623360, 4510397034460160, 338534873778165760, 27505042556295458816, 2404499023598887772160, 225014884122460397678592, 22441327480906466274779136, 2376060993772932821157273600, 266169866452350363506325897216, 31451236460722731478509841711104 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
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).
Note: 0 = [x^n] exp( n * Integral 1/G(x) dx ) / G(x) holds for n > 0 when G(x) = 1 + x.
It is remarkable that this sequence should consist entirely of integers.
LINKS
FORMULA
a(n) ~ sqrt(1-c) * 2^(2*n - 2) * n^(n - 1/2) / (sqrt(Pi) * exp(n) * c^(n - 1/2) * (2-c)^(n-1)), where c = -LambertW(-2*exp(-2)) = -A226775 = 0.4063757399599599... - Vaclav Kotesovec, Oct 18 2020
EXAMPLE
O.g.f.: A(x) = 1 + 2*x^2 + 20*x^3 + 328*x^4 + 7664*x^5 + 231744*x^6 + 8560512*x^7 + 372339840*x^8 + 18593869184*x^9 + 1046764673152*x^10 + ...
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, 0, -2, -20, -324, -7584, -230040, -8516976, ...];
n=1: [1, 0, -2, -20, -324, -7584, -230040, -8516976, ...];
n=2: [1, 2, 0, -24, -380, -8424, -248640, -9062720, ...];
n=3: [1, 6, 16, 0, -480, -10528, -292544, -10293696, ...];
n=4: [1, 12, 70, 236, 0, -13472, -378336, -12576960, ...];
n=5: [1, 20, 198, 1260, 5176, 0, -485520, -16616864, ...];
n=6: [1, 30, 448, 4400, 31176, 151792, 0, -21316608, ...];
n=7: [1, 42, 880, 12216, 125340, 989384, 5588416, 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^2 - 20*x^3 - 324*x^4 - 7584*x^5 - 230040*x^6 - 8516976*x^7 - 371005040*x^8 - 18545507840*x^9 - 1044727771680*x^10 + ...
exp(Integral 1/A(x) dx) = 1 + 2*x/2 + 2*x^2/2^2 - 4*x^3/2^3 - 90*x^4/2^4 - 2244*x^5/2^5 - 85196*x^6/2^6 - 4372040*x^7/2^7 - 281105594*x^8/2^8 - 21659046420*x^9/2^9 + ...
exp(2 * Integral 1/A(x) dx) = 1 + 2*x + 2*x^2 - 12*x^4 - 152*x^5 - 2808*x^6 - 71040*x^7 - 2265680*x^8 - 86833824*x^9 - 3878209440*x^10 - 197532405760*x^11 + ..., an integer series.
A'(x)/A(x) = 4*x + 60*x^2 + 1304*x^3 + 38120*x^4 + 1385344*x^5 + 59770928*x^6 + 2973371104*x^7 + 167126930016*x^8 + 10457452841984*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: A323574 A294454 A322729 * A104462 A352601 A060164
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 18 04:56 EDT 2024. Contains 371767 sequences. (Running on oeis4.)