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!)
A105329 Numbers k such that prime(k+1) == 5 (mod k). 8
1, 2, 6, 7, 12, 14, 181, 1053, 1057, 2614, 40089, 40114, 40117, 40119, 100346, 100352, 100358, 251707, 251742, 251743, 251754, 251757, 1617173, 4124458, 10553513, 27067262, 27067272, 179992838, 179993008 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
There are no further terms up to 215000000. - Farideh Firoozbakht, May 13 2005
Integers k such that A004649(k+1) = 5. - Michel Marcus, Dec 30 2022
LINKS
MATHEMATICA
Do[If[5 == Mod[Prime[n + 1], n], bb = Append[bb, n]], {n, 1, 251758}];
bb={}; Do[If[5 == Mod[Prime[n + 1], n], bb = Append[bb, n]], {n, 1, 251758}]; bb (* Farideh Firoozbakht, May 13 2005 *)
PROG
(Sage)
def A105329(max) :
terms = []
p = 3
for n in range(1, max+1) :
if (p - 5) % n == 0 : terms.append(n)
p = next_prime(p)
return terms
# Eric M. Schmidt, Feb 05 2013
CROSSREFS
Sequence in context: A293531 A072147 A190121 * A124319 A325262 A334906
KEYWORD
nonn,more
AUTHOR
Zak Seidov, Apr 30 2005
EXTENSIONS
More terms from Farideh Firoozbakht, May 13 2005
First two terms 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 May 12 03:10 EDT 2024. Contains 372431 sequences. (Running on oeis4.)