login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A116678 Numbers k such that prime(k) == -12 (mod k). 2
1, 65, 433, 4124459, 1208198525, 8179002097, 8179002109, 8179002125, 8179002193 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)