OFFSET
0,1
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..10000
MATHEMATICA
A007376 := Flatten[IntegerDigits /@ Range[1600]]; Table[A007376[[8*n + 2]], {n, 0, 100}] (* G. C. Greubel, May 05 2018 *)
PROG
(Python)
from itertools import islice, count
def A127950gen(): return islice((int(d) for n in count(0) for d in str(n)), 2, None, 8)
A127950_list = list(islice(A127950gen(), 40)) # Chai Wah Wu, Dec 04 2021
CROSSREFS
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, Jul 23 2008
STATUS
approved