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!)
A360340 a(n) = coefficient of x^n*y^(3*n+1)/n! in log( Sum_{n>=0} (n + y)^(4*n) * x^n/n! ). 3
1, 8, 180, 7072, 403960, 30504384, 2874754624, 325376606720, 43039201623552, 6519192650444800, 1113116854379470336, 211577875772377853952, 44316053154112985589760, 10142584803973143241244672, 2518533121682934512363520000, 674412844392686430750000676864 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
E.g.f. A(x) = Sum_{n>=1} a(n)*x^n/n! may be defined as follows.
(1) A(x) = Limit_{N->oo} (1/N) * log( Sum_{n>=0} (N + n)^(4*n) * (x/N^3)^n/n! ).
(2) a(n) = [x^n*y^(3*n+1)/n!] log( Sum_{n>=0} (n + y)^(4*n) * x^n/n! ).
a(n) ~ c * d^n * n! / n^(5/2), where d = (16/9) * (3 + 2*sqrt(3)) * exp(2*(2 - sqrt(3))) = 19.6391804025535695723623649299349856005700748518058428... and c = (sqrt(3) - 1) / (6*sqrt(Pi)) = 0.06883590670968059270411496568598690388462... - Vaclav Kotesovec, Feb 12 2023, updated Mar 17 2024
EXAMPLE
E.g.f.: A(x) = x + 8*x^2/2! + 180*x^3/3! + 7072*x^4/4! + 403960*x^5/5! + 30504384*x^6/6! + 2874754624*x^7/7! + 325376606720*x^8/8! + ... + a(n)*x^n/n! + ...
where a(n) equals the coefficient of y^(3*n+1)*x^n/n! in the series given by
log( Sum_{n>=0} (n + y)^(4*n) * x^n/n! ) = (y^4 + 4*y^3 + 6*y^2 + 4*y + 1)*x + (8*y^7 + 84*y^6 + 392*y^5 + 1050*y^4 + 1736*y^3 + 1764*y^2 + 1016*y + 255)*x^2/2! + (180*y^10 + 3392*y^9 + 30138*y^8 + 165768*y^7 + 622692*y^6 + 1662072*y^5 + 3178509*y^4 + 4282316*y^3 + 3875094*y^2 + 2119644*y + 530675)*x^3/3! + (7072*y^13 + 203056*y^12 + 2832672*y^11 + 25357888*y^10 + 161977312*y^9 + 776565264*y^8 + 2862877120*y^7 + 8183026480*y^6 + 18063131520*y^5 + 30301902248*y^4 + 37428709376*y^3 + 32144205840*y^2 + 17161326976*y + 4292647990)*x^4/4! + ...
Exponentiation yields the e.g.f. of A266483:
exp(A(x)) = 1 + x + 9*x^2/2! + 205*x^3/3! + 8033*x^4/4! + 456561*x^5/5! + 34307545*x^6/6! + 3219222301*x^7/7! + 363018204225*x^8/8! + ... + A266483(n)*x^n/n! + ...
which equals
lim_{N->oo} [ Sum_{n>=0} (N + n)^(4*n) * (x/N^3)^n/n! ]^(1/N).
RELATED SEQUENCES.
a(n) is divisible by n where a(n)/n begins:
[1, 4, 60, 1768, 80792, 5084064, 410679232, 40672075840, 4782133513728, ...].
PROG
(PARI) /* Using logarithmic formula */
{a(n) = n! * polcoeff( polcoeff( log( sum(m=0, n+1, (m + y)^(4*m) *x^m/m! ) +x*O(x^n) ), n, x), 3*n+1, y)}
for(n=1, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A108552 A221589 A317486 * A060593 A130775 A332118
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 10 2023
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 August 12 19:26 EDT 2024. Contains 375113 sequences. (Running on oeis4.)