[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”).

A173836
Natural numbers n such that the concatenation 1331//n^3 is a prime number.
10
21, 27, 29, 41, 101, 119, 141, 171, 173, 177, 191, 197, 219, 243, 267, 291, 309, 327, 333, 369, 371, 383, 411, 417, 1019, 1049, 1059, 1091, 1157, 1163, 1211, 1311, 1337, 1343, 1359, 1371, 1379, 1409, 1461, 1473, 1481, 1503, 1521, 1593, 1599, 1613, 1637
OFFSET
1,1
COMMENTS
Given the cube n^3 with k = A111393(n) decimal digits, we have to check whether the concatenation, 11^3 * 10^k + n^3, is a prime.
The number k of digits that 1331=11^3 is shifted is not a multiple of 3,
because the form a^3+b^3 = (a^2+a*b+b^2) * (a - b) cannot construct a prime.
REFERENCES
K. Haase, P. Mauksch: Spass mit Mathe, Urania-Verlag Leipzig, Verlag Dausien Hanau, 2. Auflage 1985
LINKS
EXAMPLE
21 is in the sequence because 21^3=9261, and the concatenation is 13319261=prime(868687).
27 is in the sequence because 27^3=19683, and the concatenation is 133119683=prime(7545064).
MATHEMATICA
Select[Range[2000], PrimeQ[FromDigits[Join[{1, 3, 3, 1}, IntegerDigits[ #^3]]]]&] (* Harvey P. Dale, Oct 14 2011 *)
KEYWORD
base,nonn
AUTHOR
Eva-Maria Zschorn (e-m.zschorn(AT)zaschendorf.km3.de), Feb 26 2010
EXTENSIONS
Comments sligthly rephrased - R. J. Mathar, Mar 05 2010
STATUS
approved