A245853 Powers of 12 without the digit '0' in their decimal expansion.
1, 12, 144, 1728, 248832, 2985984, 429981696, 61917364224, 1283918464548864, 3833759992447475122176, 11447545997288281555215581184
Offset: 1
Crossrefs
Programs
-
Magma
[12^n: n in [0..3*10^4] | not 0 in Intseq(12^n)];
-
Mathematica
Select[12^Range[0, 2*10^5], DigitCount[#, 10, 0]==0 &]
Comments