OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..1600
MATHEMATICA
Map[Block[{k = 1}, While[Mod[#, Prime[k]] == 0, k++]; Prime[k]] &, Select[Range[10^6], IntegerQ@ DivisorSigma[-1, #] &] ] (* or, using the b-file at A007691: *)
Map[Block[{k = 1}, While[Mod[#, Prime[k]] == 0, k++]; Prime[k]] &, DeleteCases[Import["https://oeis.org/A007691/b007691.txt", "Data"], _?(Length@ # == 0 &)][[1 ;; 91, -1]] ] (* Michael De Vlieger, Mar 19 2021 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Mar 19 2021
STATUS
approved