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

%I #9 Feb 11 2021 22:56:35

%S 1,65,433,4124459,1208198525,8179002097,8179002109,8179002125,

%T 8179002193

%N Numbers k such that prime(k) == -12 (mod k).

%o def A116678(max) :

%o ....terms = []

%o ....p = 2

%o ....for n in range(1,max+1) :

%o ........if (p + 12) % n == 0 : terms.append(n)

%o ........p = next_prime(p)

%o ....return terms

%o end # _Eric M. Schmidt_, Feb 05 2013

%Y Cf. A116677.

%K nonn

%O 1,2

%A _Giovanni Resta_, Feb 22 2006

%E First term inserted by _Eric M. Schmidt_, Feb 05 2013

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 May 10 04:35 EDT 2024. Contains 372356 sequences. (Running on oeis4.)