[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A174355
Natural numbers n such that the concatenations n//1331 and 1331//n are prime numbers.
5
53, 57, 153, 249, 279, 329, 333, 339, 347, 381, 399, 431, 471, 489, 641, 647, 711, 821, 851, 923, 959, 987, 1169, 1239, 1313, 1383, 1479, 1547, 1563, 1589, 1611, 1653, 1677, 1709, 1773, 1863, 1887, 1973, 2031, 2067
OFFSET
1,1
COMMENTS
See comments and references for A173836, A174213.
Intersection of A173579 and A174213. - Michel Marcus, Aug 27 2013
REFERENCES
Marcus du Sautoy: Die Musik der Primzahlen. Auf den Spuren des groessten Raetsels der Mathematik, Beck, Muenchen 2004
LINKS
EXAMPLE
531331 = prime(43928), 133153 = prime(12427), 53 is smallest term of sequence.
MATHEMATICA
Select[Range[2100], AllTrue[{#*10^4+1331, 1331*10^IntegerLength[#]+#}, PrimeQ]&] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, Aug 21 2015 *)
PROG
(PARI) isok(n) = isprime(n*10^4 + 1331) && isprime(1331*10^(length(Str(n))) + n); \\ Michel Marcus, Aug 27 2013
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Eva-Maria Zschorn (e-m.zschorn(AT)zaschendorf.km3.de), Mar 17 2010
STATUS
approved