|
| |
|
|
A095188
|
|
Smallest prime formed by the digit string after decimal point of n^(1/2), or 0 if no such prime exists.
|
|
1
| |
|
|
0, 41, 7, 0, 2, 449, 645751, 82842712474619, 0, 162277, 3, 464101615137754587054892683011, 605551, 7, 87298334620741688517926539978239961, 0, 1231, 2, 3, 47, 5
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
COMMENTS
| Conjecture: a(n) is nonzero if n is not a perfect square.
For n=22, no provable primes were found with fewer than 256 digits. - Wouter Meeussen (wouter.meeussen(AT)pandora.be), Jun 04 2004
|
|
|
EXAMPLE
| a(7) = 645751 as 7^(1/2) = 2.64575131106459059... and the least prime is 645751.
|
|
|
MATHEMATICA
| << NumberTheory`PrimeQ`; it = Table[{n, k = 1; While[temp = Floor[10^k FractionalPart[n^(1/2)]]; k < 256 && (temp === 1 || ! ProvablePrimeQ[temp]), k++ ]; temp, k}, {n, 2, 21}]
|
|
|
CROSSREFS
| Sequence in context: A198190 A106424 A126636 * A107813 A198162 A153682
Adjacent sequences: A095185 A095186 A095187 * A095189 A095190 A095191
|
|
|
KEYWORD
| base,nonn
|
|
|
AUTHOR
| Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Jun 02 2004
|
|
|
EXTENSIONS
| Corrected and extended by Wouter Meeussen (wouter.meeussen(AT)pandora.be), Jun 04 2004
|
| |
|
|