OFFSET
1,3
COMMENTS
Numbers k whose base-7 representation begins with the same digits as k itself.
LINKS
Scott R. Shannon, Table of n, a(n) for n = 1..500
EXAMPLE
102616333034_10 = 10261633303415_7, which also begins with '102616333034'.
PROG
(PARI) isok(n) = my(vb=digits(n, 7), vd=digits(n)); vd == vector(#vd, k, vb[k]); \\ Michel Marcus, May 17 2019
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Scott R. Shannon, May 11 2019
STATUS
approved