login
A192610
Numbers k such that the concatenation of k^3 k^2 k^1 k^0 is prime.
3
9, 36, 37, 54, 55, 76, 79, 330, 333, 352, 370, 394, 405, 417, 427, 456, 490, 492, 498, 504, 517, 550, 583, 624, 634, 652, 667, 762, 795, 828, 855, 874, 876, 891, 898, 903, 921, 924, 925, 930, 949, 960, 967, 982, 3181, 3186, 3201, 3208, 3232, 3243, 3274, 3333, 3336, 3402, 3403, 3409, 3411, 3442
OFFSET
1,1
COMMENTS
All terms == 0 or 1 (mod 3). - Robert Israel, May 20 2026
LINKS
EXAMPLE
9 is in the list because the concatenation of 9^3 9^2 9^1 9^0 is 7298191 and this number is prime.
MAPLE
lcat:= proc(L) local x, i;
x:= L[1];
for i from 2 to nops(L) do
x:= x*10^(1+ilog10(L[i]))+L[i]
od;
x
end proc:
filter:= n -> isprime(lcat([n^3, n^2, n, 1])):
select(filter, [$1..5000]); # Robert Israel, May 20 2026
MATHEMATICA
Select[Range[1000], PrimeQ[FromDigits[Flatten[IntegerDigits/@ (#^Range[ 3, 0, -1])]]]&] (* Harvey P. Dale, Jul 27 2011 *)
CROSSREFS
Sequence in context: A330907 A231666 A143224 * A319958 A329808 A169580
KEYWORD
nonn,base
AUTHOR
Claudio Meller, Jul 05 2011
EXTENSIONS
More terms from Robert Israel, May 20 2026
STATUS
approved