OFFSET
0,2
COMMENTS
a(n) divides n+3 because A(n+2) = (n+2)(n+1)*A(n) + n+3.
LINKS
Antti Karttunen, Table of n, a(n) for n = 0..4096
J. Sondow, A geometric proof that e is irrational and a new measure of its irrationality, Amer. Math. Monthly 113 (2006) 637-641.
J. Sondow, A geometric proof that e is irrational and a new measure of its irrationality, arXiv:0704.1282 [math.HO], 2007-2010.
J. Sondow and K. Schalm, Which partial sums of the Taylor series for e are convergents to e? (and a link to the primes 2, 5, 13, 37, 463), II, Gems in Experimental Mathematics (T. Amdeberhan, L. A. Medina, and V. H. Moll, eds.), Contemporary Mathematics, vol. 517, Amer. Math. Soc., Providence, RI, 2010.
EXAMPLE
a(2) = gcd(A(2), A(4)) = gcd(5, 65) = 5.
MATHEMATICA
(A[n_] := Sum[n!/k!, {k, 0, n}]; Table[GCD[A[n], A[n+2]], {n, 0, 100}])
GCD[#[[1]], #[[3]]]&/@Partition[Table[Sum[n!/k!, {k, 0, n}], {n, 0, 100}], 3, 1] (* Harvey P. Dale, Jun 14 2022 *)
PROG
(PARI)
A000522(n) = sum(k=0, n, binomial(n, k)*k!); \\ This function from Joerg Arndt, Dec 14 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Jonathan Sondow, Nov 07 2006
STATUS
approved