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.

A261727 Length of longest prefix of n-th row in A261712 coinciding with row n+1.

Original entry on oeis.org

1, 0, 0, 2, 0, 3, 0, 0, 0, 25, 46, 90, 172, 141, 275, 601, 1102, 2199, 4150
Offset: 1

Views

Author

Reinhard Zumkeller, Aug 31 2015

Keywords

Comments

A261712(n+1,k) = A261712(n,k) for k = 1 .. a(n).

Crossrefs

Programs

  • Haskell
    a261727 n = a261727_list !! (n-1)
    a261727_list = map (length . takeWhile (== 0)) $
                       zipWith (zipWith (-)) a261712_tabf $ tail a261712_tabf