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

A110042
Bases of the n-th powers in A090900.
0
2, 3, 3, 9, 33, 33, 23, 63, 273, 243, 187, 297, 81, 543, 17, 1117, 237, 9087, 1581, 693, 1149, 3807, 3953, 3499, 7979, 489, 2751, 1597, 2109, 8073
OFFSET
1,1
MATHEMATICA
c = ""; Do[k = 1; While[ !PrimeQ[ToExpression[c <> ToString[k^n]]], k++ ]; Print[k]; c = c <> ToString[k^n], {n, 1, 30}]
PROG
(PARI) lista(nn) = my(k, s=""); for(n=1, nn, k=1; while(!ispseudoprime(eval(Str(s, k^n))), k++); print1(k, ", "); s=Str(s, k^n)); \\ Jinyuan Wang, Apr 05 2023
CROSSREFS
Cf. A090900.
Sequence in context: A340914 A194232 A371567 * A306101 A364967 A337432
KEYWORD
nonn,more
AUTHOR
Ryan Propper, Jul 08 2005
STATUS
approved