OFFSET
1,2
COMMENTS
Ignoring the different offsets, this is the partial sums of A001710. - Jonathan Vos Post and Franklin T. Adams-Watters, May 12 2010
FORMULA
a(n) = A014288(n-1)+1. - Vladeta Jovovic, Apr 08 2004
a(n)=n*a(n-1)-(n-1)*a(n-2), n>3. - Gary Detlefs, Dec 30 2010
MATHEMATICA
a[1] = 1; a[2] = 2; a[n_] := a[n] = a[n - 1] + Sum[a[n - 1] - a[i], {i, n - 1}]; Table[ a[n], {n, 21}] (* Robert G. Wilson v, Apr 08 2004 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Apr 07 2004
EXTENSIONS
More terms from Robert G. Wilson v, Apr 08 2004
STATUS
approved