OFFSET
1,3
COMMENTS
The partial sums of this sequence from k = 1 to 10^m, for m = 1, 2, ..., are 15, 185, 1952, 19852, 199538, 1998538, 19995362, 199985379, 1999953823, ... . Conjecture: The asymptotic mean of this sequence is 2. - Amiram Eldar, Jun 04 2022
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..16384
FORMULA
G.f.: Sum_{k>0} x^k/(1-x^(k*(k+1))). - Vladeta Jovovic, Apr 21 2010
MATHEMATICA
ndd[n_]:=Count[Divisors[n], _?(Divisible[n+1, #+1]&)]; Array[ndd, 110] (* Harvey P. Dale, Aug 29 2015 *)
PROG
(PARI) a(n)=sumdiv(n, d, if((n+1)%(d+1), 0, 1))
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Apr 27 2003
STATUS
approved