login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A116678
Numbers k such that prime(k) == -12 (mod k).
2
1, 65, 433, 4124459, 1208198525, 8179002097, 8179002109, 8179002125, 8179002193
OFFSET
1,2
PROG
def A116678(max) :
....terms = []
....p = 2
....for n in range(1, max+1) :
........if (p + 12) % n == 0 : terms.append(n)
........p = next_prime(p)
....return terms
end # Eric M. Schmidt, Feb 05 2013
CROSSREFS
Cf. A116677.
Sequence in context: A300162 A211259 A069758 * A218845 A219424 A020292
KEYWORD
nonn
AUTHOR
Giovanni Resta, Feb 22 2006
EXTENSIONS
First term inserted by Eric M. Schmidt, Feb 05 2013
STATUS
approved