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!)
A166457 Numbers n such that n*100+1 is prime. 1
1, 4, 6, 7, 12, 13, 16, 18, 19, 28, 30, 33, 37, 40, 42, 48, 51, 55, 57, 58, 61, 63, 67, 70, 79, 81, 85, 90, 96, 99, 103, 105, 106, 117, 118, 121, 123, 124, 126, 130, 139, 144, 151, 154, 156, 159, 160, 163, 169, 174, 183, 184, 187, 190, 193, 195, 198, 201, 202, 210, 211 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
a(1)=1 (1*100+1=prime); a(2)=4 (4*100+1=prime).
MAPLE
a := proc (n) if isprime(100*n+1) then n else end if end proc: seq(a(n), n = 1 .. 250); # Emeric Deutsch, Nov 01 2009
MATHEMATICA
Select[If[PrimeQ[100*# + 1], #] & /@ Range[2*8!], IntegerQ] (* G. C. Greubel, May 15 2016 *)
PROG
(PARI) is(n)=isprime(n*100+1) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
Sequence in context: A303263 A056853 A024566 * A047506 A310656 A102136
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Extended by Emeric Deutsch, Nov 01 2009
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 24 19:24 EDT 2024. Contains 371962 sequences. (Running on oeis4.)