A261727 Length of longest prefix of n-th row in A261712 coinciding with row n+1.
1, 0, 0, 2, 0, 3, 0, 0, 0, 25, 46, 90, 172, 141, 275, 601, 1102, 2199, 4150
Offset: 1
Programs
-
Haskell
a261727 n = a261727_list !! (n-1) a261727_list = map (length . takeWhile (== 0)) $ zipWith (zipWith (-)) a261712_tabf $ tail a261712_tabf
Comments