login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A195944
Numbers k such that 13^k has no zero in its decimal expansion.
21
0, 1, 2, 3, 4, 5, 7, 10, 14
OFFSET
1,3
COMMENTS
Probably finite. Is 14 the largest term?
FORMULA
Equals { n | A001022(n) is in A052382 }.
MATHEMATICA
Select[Range[0, 20], DigitCount[13^#, 10, 0]==0&] (* Harvey P. Dale, May 24 2023 *)
PROG
(PARI) for( n=0, 9999, is_A052382(13^n) && print1(n", "))
(Magma) [n: n in [0..1000] | not 0 in Intseq(13^n) ]; // Vincenzo Librandi, May 06 2015
KEYWORD
nonn,base
AUTHOR
M. F. Hasler, Sep 25 2011
EXTENSIONS
Keyword:fini removed by Jianing Song, Jan 28 2023 as finiteness is only conjectured.
STATUS
approved