A081973 a(1) = 1; a(n) = a(n-1) + sigma(a(n-1)) where sigma(k) = sum of the divisors of k.
1, 2, 5, 11, 23, 47, 95, 215, 479, 959, 2063, 4127, 8255, 19007, 38327, 76655, 168647, 338663, 708263, 1453823, 3308543, 7154303, 14919599, 29910119, 59820239, 119676959, 239387375, 538142975, 1205440295, 2651968655, 6663140495
Offset: 1
Keywords
Links
- T. D. Noe, Table of n, a(n) for n=1..200
Programs
-
Mathematica
a[1]=1; a[n_] := a[n]=a[n-1]+DivisorSigma[1, a[n-1]]
Extensions
More terms from Gabriel Cunningham (gcasey(AT)mit.edu), Apr 07 2003
Comments