A308071 Numbers k such that k is the substring identical to the most significant digits of its base-8 representation.
0, 1, 2, 3, 4, 5, 6, 7, 13663722656306465044, 13664030703642511032, 13707143454447524553, 13710552565235121771, 14336552505653142213, 14340267205650777016, 14340267205651006010, 15013125376232575510, 15013125401147630620, 10142740706726414575022612720
Offset: 1
Examples
13663722656306465044_10 = 1366372265630646504424_8, which also begins with '13663722656306465044'.
Links
- Scott R. Shannon, Table of n, a(n) for n = 1..500
Crossrefs
Programs
-
PARI
isok(n) = my(vb=digits(n, 8), vd=digits(n)); vd == vector(#vd, k, vb[k]); \\ Michel Marcus, May 17 2019
Comments