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!)
A249479 E.g.f.: Sum_{n>=0} x^n / Product_{k=1..n} (k - x^k). 1
1, 1, 3, 10, 47, 246, 1622, 11656, 97869, 899338, 9225674, 102689808, 1252353159, 16392179766, 231501723312, 3489107989204, 56102882993753, 956324067974034, 17265334914237406, 328565326494695912, 6582472704969812115, 138369486361447809150, 3047029944703252620540, 70122393369209990745660 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ exp(1) * n!. - Vaclav Kotesovec, Nov 01 2014
EXAMPLE
E.g.f.: A(x) = 1 + x + 3*x^2/2! + 10*x^3/3! + 47*x^4/4! + 246*x^5/5! +...
where
A(x) = 1 + x/(1-x) + x^2/((1-x)*(2-x^2)) + x^3/((1-x)*(2-x^2)*(3-x^3)) + x^4/((1-x)*(2-x^2)*(3-x^3)*(4-x^4)) + x^5/((1-x)*(2-x^2)*(3-x^3)*(4-x^4)*(5-x^5)) +...
PROG
(PARI) {a(n)=local(A=1); A=sum(m=0, n, x^m/prod(k=1, m, k-x^k +x*O(x^n))); n!*polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A226880 A005651 A346055 * A355154 A236410 A339836
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 29 2014
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 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)