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.

A031288 Position of n-th 1 in A007376.

This page as a plain text file.
%I A031288 #12 Jul 13 2013 12:01:55
%S A031288 1,10,12,13,14,16,18,20,22,24,26,28,33,53,73,93,113,133,153,173,190,
%T A031288 193,195,196,199,202,205,208,211,214,217,220,221,223,224,225,226,227,
%U A031288 229,230,232,233,235,236,238,239,241,242,244,245
%N A031288 Position of n-th 1 in A007376.
%C A031288 A007376(a(n)) = 1;
%C A031288 a(n) = Min{A031287(n), A031288(n), A031289(n), A031290(n), A031291(n), A031292(n), A031293(n), A031294(n), A031295(n), A031296(n)}. [_Reinhard Zumkeller_, Jul 28 2011]
%H A031288 Reinhard Zumkeller, <a href="/A031288/b031288.txt">Table of n, a(n) for n = 1..10000</a>
%o A031288 (Haskell)
%o A031288 import Data.List (elemIndices)
%o A031288 a031288 n = a031288_list !! (n-1)
%o A031288 a031288_list = map (+ 1) $ elemIndices 1 a007376_list
%o A031288 -- _Reinhard Zumkeller_, Jul 28 2011
%Y A031288 Cf. A193428.
%K A031288 nonn,less,base
%O A031288 1,2
%A A031288 _Clark Kimberling_