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!)
A316567 E.g.f. A(x) satisfies: Sum_{n>=0} 1/n! * exp(n^2*x)/A(x)^n = exp(1). 2
1, 2, 7, 48, 613, 12678, 376635, 14843748, 736850985, 44460709034, 3178138510415, 263969177593784, 25092912792070221, 2697122248172619374, 324551651315721416259, 43360400395276940296748, 6386567528761097854601681, 1030796192558122817118624722, 181349613039877947587685266455, 34616458231107257107670541291456 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
EXAMPLE
E.g.f.: A(x) = 1 + 2*x + 7*x^2/2! + 48*x^3/3! + 613*x^4/4! + 12678*x^5/5! + 376635*x^6/6! + 14843748*x^7/7! + 736850985*x^8/8! + 44460709034*x^9/9! + 3178138510415*x^10/10! + ...
such that
e = 1 + exp(x)/A(x) + exp(4*x)/A(x)^2/2! + exp(9*x)/A(x)^3/3! + exp(16*x)/A(x)^4/4! + exp(25*x)/A(x)^5/5! + exp(36*x)/A(x)^6/6! + ... + exp(n^2*x)/A(x)^n/n! + ...
PROG
(PARI) /* Requires setting appropriate precision and index ranges */
{a(n) = my(A=[1]); for(i=1, n, A=concat(A, 0); A[#A] = round( (#A-1)!*Vec( sum(n=0, 400, exp(n^2*x +x*O(x^#A) )/n!/Ser(A)^n*1. )/exp(1) )[#A])/(#A-1)! ); n!*A[n+1]}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Cf. A316986.
Sequence in context: A277501 A277503 A317666 * A304968 A281263 A206153
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 06 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 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)