OFFSET
1,1
LINKS
Lars Blomberg, Table of n, a(n) for n = 1..10000
R. P. Boas & N. J. A. Sloane, Correspondence, 1974
EXAMPLE
12 is 1+11, and has the proper divisors 2, 3, 4, 6.
MATHEMATICA
Select[Prime@ Range@ 630 + 1, DivisorSigma[0, #] == 6 &] (* Michael De Vlieger, Jul 13 2015 *)
PROG
(PARI) main(size)={my(v=vector(size), i, t); t=1; for(i=1, size, until(length(divisors(prime(t)+1))-2==4, t++); v[i]=prime(t)+1; t++); return(v); } /* Anders Hellström, Jul 13 2015 */
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jul 12 2015, following a suggestion from R. P. Boas, May 19 1974
EXTENSIONS
More terms from Lars Blomberg, Jul 13 2015
STATUS
approved