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.

A030332 Position of n-th 0 in A003137.

This page as a plain text file.
%I A030332 #9 Jul 13 2013 12:01:54
%S A030332 4,10,16,17,19,22,26,35,43,44,46,49,53,62,70,71,72,74,75,78,79,82,84,
%T A030332 86,90,94,96,98,102,107,108,111,115,120,132,143,144,147,151,156,168,
%U A030332 178,179,180,182,183,186,187,190,192,194,198,202
%N A030332 Position of n-th 0 in A003137.
%C A030332 A003137(a(n)) = 0. - _Reinhard Zumkeller_, Feb 21 2013
%H A030332 Reinhard Zumkeller, <a href="/A030332/b030332.txt">Table of n, a(n) for n = 1..10000</a>
%o A030332 (Haskell)
%o A030332 import Data.List (elemIndices)
%o A030332 a030332 n = a030332_list !! (n-1)
%o A030332 a030332_list = map (+ 1) $ elemIndices 0 a003137_list
%o A030332 -- _Reinhard Zumkeller_, Feb 21 2013
%Y A030332 Cf. A030333, A030334, A030336.
%K A030332 nonn
%O A030332 1,1
%A A030332 _Clark Kimberling_