OFFSET
0,2
COMMENTS
This sequence is inspired by the Maclaurin series for the exponential function.
The series in the name is well defined; for any n > 0, only the first A065027(n) terms are different from zero.
LINKS
EXAMPLE
For n = 3:
- we have:
k floor(3^k / k!)
- ---------------
0 1
1 3
2 4
3 4
4 3
5 2
6 1
>=7 0
- hence a(3) = 1 + 3 + 4 + 4 + 3 + 2 + 1 = 18.
PROG
(PARI) a(n) = { my (v=0, d=1); for (k=1, oo, if (d<1, return (v), v += floor(d); d *= n/k)) }
CROSSREFS
KEYWORD
nonn
AUTHOR
Rémy Sigrist, Jul 11 2019
STATUS
approved