OFFSET
0,3
LINKS
Antti Karttunen, Table of n, a(n) for n = 0..16384
EXAMPLE
The positive divisors of 2*12=24 are 1,2,3,4,6,8,12,24. Of these, 1,2,3,4 are the non-isolated divisors of 24. There are 2 terms among the earlier terms of the sequence that equal 1, 1 term that equals 2, 7 terms which equal 3 and 0 terms which equal 4. So a(12) = 2+1+7+0 = 10.
PROG
(PARI)
up_to = 91;
A134187list(up_to) = { my(v=vector(1+up_to)); v[1] = 1; for(n=1, up_to, v[1+n] = sum(k=0, n-1, my(u=v[1+k]); !((2*n)%u) && ((!((2*n)%(1+u))) || ((u>1)&&(!((2*n)%(u-1))))))); (v); };
v134187 = A134187list(up_to);
A134187(n) = v134187[1+n]; \\ Antti Karttunen, Apr 06 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Oct 12 2007
EXTENSIONS
Extended by Ray Chandler, Jun 25 2008
STATUS
approved