cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A127950 a(n) = A007376(8*n+2).

This page as a plain text file.
%I A127950 #14 Apr 17 2022 22:01:19
%S A127950 2,1,1,1,2,2,3,3,3,4,4,5,5,5,6,6,7,7,7,8,8,9,9,9,0,1,6,0,1,4,1,1,2,2,
%T A127950 1,0,3,1,8,4,1,6,4,1,4,5,1,2,6,1,0,7,1,8,8,1,6,8,1,4,9,2,2,0,2,0,1,2,
%U A127950 8,2,2,6,2,2,4,3,2,2,4,2,0,5,2,8,6,2,6,6,2,4,7,2,2,8,2,0,9,2,8,0,3,6,0,3,4
%N A127950 a(n) = A007376(8*n+2).
%H A127950 G. C. Greubel, <a href="/A127950/b127950.txt">Table of n, a(n) for n = 0..10000</a>
%t A127950 A007376 := Flatten[IntegerDigits /@ Range[1600]]; Table[A007376[[8*n + 2]], {n, 0, 100}] (* _G. C. Greubel_, May 05 2018 *)
%o A127950 (Python)
%o A127950 from itertools import islice, count
%o A127950 def A127950gen(): return islice((int(d) for n in count(0) for d in str(n)),2,None,8)
%o A127950 A127950_list = list(islice(A127950gen(),40)) # _Chai Wah Wu_, Dec 04 2021
%Y A127950 Cf. A007376.
%K A127950 nonn,base
%O A127950 0,1
%A A127950 _N. J. A. Sloane_, Jul 23 2008