login
A239908
a(n) = smallest value of k such that the concatenation 1,n,n^2,..., n^(k-1),n^k,n^(k-1),...n^2,n,1 is a prime.
1
9, 2, 1, 12, 1, 2
OFFSET
1,1
COMMENTS
Terms from Robert G. Wilson v.
EXAMPLE
a(1) = 9 as 1 (19 times) = (10^19-1)/9 is the smallest prime of this form with an odd number of 1's.
a(2) = 2 as 12421 is a prime.
MATHEMATICA
Do[k = 0; While[a = Table[n^i, {i, 0, k}]; b = ToExpression[ StringJoin[ ToString /@ Join[a, Drop[ Reverse[a], 1]]]]; !PrimeQ[b], k++ ]; Print[k], {n, 1, 10} ] (* Robert G. Wilson v *)
CROSSREFS
See A069566 for another version.
Sequence in context: A197757 A293258 A010536 * A293171 A334689 A388928
KEYWORD
more,nonn,base
AUTHOR
Ray Chandler and N. J. A. Sloane, Apr 08 2014
STATUS
approved