A168568 Primes p such that the concatenation p//29 is a squared prime.
5, 53, 3329, 4583, 7691, 12611, 14957, 17609, 20249, 35081, 56501, 71663, 134909, 191231, 237851, 305477, 339539, 351293, 394007, 418997, 432569, 466079, 574109, 611993, 619841, 628373, 659831, 701741, 709469, 744251, 752903, 1386977, 1398779
Offset: 1
Examples
a(1) = 5 = prime(3) because 529=23^2 and 23=prime(9). 7 = prime(4) is not in the sequence because 729=27^2 and 27=3^3 is not a prime. a(2) = 53 = prime(16) because 5329=73^2 and 73=prime(21). a(3) = 3329 = prime(469) because 332929=577^2 and 577=prime(106).
References
- Peter Bundschuh, Einfuehrung in die Zahlentheorie, Springer, 4. Auflage 1998.
- Leonard E. Dickson, History of the Theory of numbers, vol. I, Dover Publications 2005.
- Theo Kempermann, Zahlentheoretische Kostproben, Harri Deutsch, 2. aktualisierte Auflage 2005.
Links
- David Corneth, Table of n, a(n) for n = 1..10000 (first 150 terms from Harvey P. Dale)
Programs
-
Mathematica
Select[Prime[Range[120000]],PrimeQ[Sqrt[100#+29]]&] (* Harvey P. Dale, Jan 15 2019 *)
Extensions
Keyword:base added by R. J. Mathar, Dec 05 2009
Comments