A195944 Numbers k such that 13^k has no zero in its decimal expansion.
0, 1, 2, 3, 4, 5, 7, 10, 14
Offset: 1
Links
- Carlos Rivera, Puzzle 607. A zeroless Prime power
Crossrefs
Programs
-
Magma
[n: n in [0..1000] | not 0 in Intseq(13^n) ]; // Vincenzo Librandi, May 06 2015
-
Mathematica
Select[Range[0,20],DigitCount[13^#,10,0]==0&] (* Harvey P. Dale, May 24 2023 *)
-
PARI
for( n=0,9999, is_A052382(13^n) && print1(n","))
Extensions
Keyword:fini removed by Jianing Song, Jan 28 2023 as finiteness is only conjectured.
Comments