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!)
A193552 Prime numbers ending in James Bond number ''007'' 1
4007, 6007, 9007, 10007, 12007, 13007, 16007, 24007, 36007, 45007, 61007, 64007, 78007, 82007, 88007, 90007, 94007, 97007, 103007, 108007, 121007, 123007, 135007, 138007, 142007, 145007, 151007, 156007, 157007, 162007, 169007, 171007, 174007 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Of this sequence, Wells (2005) wrote: "Sloane's On-Line Encyclopedia of Integer Sequences declines to include it, naturally," giving it as an example of "sink[ing] even lower" than the iccanobiF primes. - Alonso del Arte, Mar 07 2012
REFERENCES
David Wells, Prime Numbers: The Most Mysterious Figures in Math. Hoboken, New Jersey: John Wiley & Sons (2005): 228.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
FORMULA
Primes of the form 1000n + 7 with n >= 1.
MAPLE
select(isprime, [1000*i+7$i=1..200])[]; # Alois P. Heinz, Feb 03 2023
MATHEMATICA
Select[Range[1007, 200007, 1000], PrimeQ] (* Alonso del Arte, Mar 07 2012 *)
PROG
(PARI) forstep(n=1007, 1e6, 1000, if(isprime(n), print1(n", "))) \\ Charles R Greathouse IV, Mar 07 2012
(Python)
from sympy import isprime
from itertools import count, islice
def agen(): yield from (t for t in count(1007, 1000) if isprime(t))
print(list(islice(agen(), 33))) # Michael S. Branicky, Feb 03 2023
CROSSREFS
Sequence in context: A228579 A252328 A235307 * A107285 A252349 A282128
KEYWORD
nonn,easy,base
AUTHOR
Kausthub Gudipati, Jul 30 2011
EXTENSIONS
Corrected and extended by Charles R Greathouse IV, Jul 30 2011
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 06:07 EDT 2024. Contains 371918 sequences. (Running on oeis4.)