OFFSET
1,1
COMMENTS
For a guide to related sequences, see A204892.
LINKS
Michel Marcus, Table of n, a(n) for n = 1..10000
MATHEMATICA
(See the program at A205146.)
PROG
(PARI) s(m) = prime(m)*prime(m+1);
isok(k, n) = my(sk=s(k)); for (j=1, k-1, if (!Mod(sk-s(j), n), return (j)));
a(n) = my(k=1, x); while (!(j=isok(k, n)), k++); (s(k) - s(j))/n; \\ Michel Marcus, Jul 23 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 25 2012
EXTENSIONS
More terms from Michel Marcus, Jul 23 2021
STATUS
approved