|
| |
|
|
A023237
|
|
Numbers n such that n and 10n + 1 are both prime.
|
|
3
| |
|
|
3, 7, 13, 19, 31, 43, 97, 103, 109, 151, 157, 181, 193, 211, 241, 271, 337, 349, 367, 409, 421, 439, 487, 523, 547, 571, 601, 613, 631, 691, 733, 769, 811, 823, 829, 883, 937, 1009, 1021, 1033, 1039, 1063, 1069, 1117, 1201, 1249, 1279, 1291, 1459, 1483, 1489
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| Primes which with a 1 appended stay prime.
Corresponding values of 10n + 1 in A055781. [From Jaroslav Krizek (jaroslav.krizek(AT)atlas.cz), Jul 14 2010]
|
|
|
MAPLE
| with(numtheory); for i from 1 to 500 do if isprime(10*ithprime(i)+1) then printf(`%d, `, ithprime(i)) fi: od: (James A. Sellers, (sellersj(AT)math.psu.edu), Apr 09 2005)
|
|
|
MATHEMATICA
| Select[ Prime[ Range[ 240]], PrimeQ[ FromDigits[ Join[ IntegerDigits[ # ], {1}]]] &] (from Robert G. Wilson v (rgwv(AT)rgwv.com), Apr 09 2005)
|
|
|
PROG
| (MAGMA) [n: n in [0..1000] | IsPrime(n) and IsPrime(10*n+1)] [From Vincenzo Librandi, Nov 20 2010]
|
|
|
CROSSREFS
| Cf. A105435.
Sequence in context: A167473 A103521 A103966 * A106061 A155703 A023217
Adjacent sequences: A023234 A023235 A023236 * A023238 A023239 A023240
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| David W. Wilson (davidwwilson(AT)comcast.net)
|
|
|
EXTENSIONS
| Edited by N. J. A. Sloane (njas(AT)research.att.com) at the suggestion of M. F. Hasler, Aug 24 2007
|
| |
|
|