OFFSET
1,2
COMMENTS
From Antti Karttunen, Jun 15 2018: (Start)
Number of terms of A005097 that divide n.
For all n >= 1, a(n) > A156660(n). Specifically, a(p) = 2 for all p in A005384 (Sophie Germain primes), although 2's occur in other positions as well.
(End)
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..65537
FORMULA
EXAMPLE
10 has divisors 1,2,5 and 10 of which 2.1+1, 2.2+1 and 2.5+1 are prime, so a(10)=3
MATHEMATICA
Table[Count[Divisors[n], _?(PrimeQ[2#+1]&)], {n, 100}] (* Harvey P. Dale, Apr 29 2015 *)
PROG
(PARI) for (n=2, 100, s=0; fordiv(i=n, i, s+=isprime(2*i+1)); print1(", "s))
(PARI) A086668(n) = sumdiv(n, d, isprime(d+d+1)); \\ Antti Karttunen, Jun 15 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Jon Perry, Jul 27 2003
EXTENSIONS
Definition modified by Harvey P. Dale, Apr 29 2015
STATUS
approved