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!)
A234812 Primes p of the form n + 987654321 where 987654321 is the largest zeroless pandigital number. 5
987654323, 987654337, 987654347, 987654359, 987654361, 987654377, 987654379, 987654383, 987654419, 987654439, 987654443, 987654461, 987654463, 987654467, 987654511, 987654539, 987654581, 987654583, 987654601, 987654607, 987654611, 987654673, 987654677, 987654791 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
987654323 is a prime and appears in the sequence because 987654323 = 2 + 987654321.
987654337 is a prime and appears in the sequence because 987654337 = 16 + 987654321.
MAPLE
KD := proc() local a; a:=n+987654321; if isprime(a) then RETURN (a); fi; end: seq(KD(), n=1..1000);
MATHEMATICA
Select[Table[k + 987654321, {k, 1, 1000}], PrimeQ]
c=0; a=n+987654321; Do[If[PrimeQ[a], c=c+1; Print[c, " ", a]], {n, 0, 200000}] (* b-file *)
CROSSREFS
Sequence in context: A168435 A363963 A230959 * A287171 A136953 A136961
KEYWORD
nonn,base
AUTHOR
K. D. Bajpai, Apr 19 2014
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 March 28 07:20 EDT 2024. Contains 371235 sequences. (Running on oeis4.)