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

A047739
Economical palindromes.
0
343, 1331, 10201, 14641, 31213, 94249, 1030301, 1332331, 1367631, 1478741, 2060602, 2513152, 2551552, 2570752, 2939392, 2977792, 3090903, 3498943, 3637363, 3735373, 3850583, 5221225, 5265625, 5734375, 6948496, 11288211, 11333311, 12100121, 12499421, 13577531, 14655641, 22666622, 27700772, 29399392, 31244213, 33999933, 38988983, 58344385, 71111117, 100020001, 100585001, 101000101, 104060401, 104555401, 106878601
OFFSET
1,1
EXAMPLE
343 = 7^3; 3 digits in 343, 2 digits in 7^3, so 343 is economical.
MATHEMATICA
d[n_]:=IntegerDigits[n]; palQ[n_]:=Reverse[(x=d[n])]==x; ecQ[n_]:=Length[Flatten[d[{First/@(x=FactorInteger[n]), DeleteCases[Last/@x, 1]}]]] < Length[d[n]]; t={}; Do[If[palQ[n] && ecQ[n], AppendTo[t, n]], {n, 3860000}]; t (* Jayanta Basu, May 16 2013 *)
CROSSREFS
Sequence in context: A117689 A178374 A179147 * A052084 A075546 A167733
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
a(11)-a(45) from Donovan Johnson, Nov 24 2010
STATUS
approved