OFFSET
1,3
EXAMPLE
The divisors of the first 5 terms of the sequence are a(1):1; a(2):1; a(3):1,2; a(4):1,2,4; a(5):1,2,4. Eight of these divisors divide 6. (These divisors are 1;1;1,2;1,2;1,2.) So a(6) = 8.
MATHEMATICA
a = {1}; Do[AppendTo[a, Sum[Length[Select[Divisors[a[[i]]], Mod[Length[a] + 1, # ] == 0 &]], {i, 1, Length[a]}]], {70}]; a (* Stefan Steinerberger, Oct 16 2007 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Apr 26 2007
EXTENSIONS
More terms from Stefan Steinerberger, Oct 16 2007
STATUS
approved