A030332 Position of n-th 0 in A003137.
4, 10, 16, 17, 19, 22, 26, 35, 43, 44, 46, 49, 53, 62, 70, 71, 72, 74, 75, 78, 79, 82, 84, 86, 90, 94, 96, 98, 102, 107, 108, 111, 115, 120, 132, 143, 144, 147, 151, 156, 168, 178, 179, 180, 182, 183, 186, 187, 190, 192, 194, 198, 202
Offset: 1
Keywords
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
Programs
-
Haskell
import Data.List (elemIndices) a030332 n = a030332_list !! (n-1) a030332_list = map (+ 1) $ elemIndices 0 a003137_list -- Reinhard Zumkeller, Feb 21 2013
Comments