login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A031287
Position of n-th 0 in A007376.
12
0, 11, 31, 51, 71, 91, 111, 131, 151, 171, 191, 192, 194, 197, 200, 203, 206, 209, 212, 215, 218, 222, 252, 282, 312, 342, 372, 402, 432, 462, 491, 492, 494, 497, 500, 503, 506, 509, 512, 515, 518, 522, 552, 582, 612, 642, 672, 702
OFFSET
1,2
COMMENTS
A007376(a(n)) = 0;
a(n) = Max{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]
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10001 [a(1)=0 inserted by Georg Fischer, Apr 28 2020]
PROG
(Haskell)
import Data.List (elemIndices)
a031287 n = a031287_list !! (n-1)
a031287_list = map (+ 1) $ elemIndices 0 a007376_list
-- Reinhard Zumkeller, Jul 28 2011
CROSSREFS
Cf. A193428.
Sequence in context: A043904 A152293 A377460 * A230329 A232764 A057630
KEYWORD
nonn,less,base,look
EXTENSIONS
a(1)=0 inserted for consistency with change in A007376 by Sean A. Irvine, Apr 21 2020
STATUS
approved