OFFSET
1,3
COMMENTS
Numbers k whose base-8 representation begins with the same digits as k itself.
LINKS
Scott R. Shannon, Table of n, a(n) for n = 1..500
EXAMPLE
13663722656306465044_10 = 1366372265630646504424_8, which also begins with '13663722656306465044'.
PROG
(PARI) isok(n) = my(vb=digits(n, 8), 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