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.

A098565 Numbers that appear as binomial coefficients exactly 6 times.

Original entry on oeis.org

120, 210, 1540, 7140, 11628, 24310, 61218182743304701891431482520
Offset: 1

Views

Author

Paul D. Hanna, Oct 27 2004

Keywords

Crossrefs

See A098564 for more information.
Cf. A185024, A182237. Subsequence of A003015.
Cf. A059233.

Programs

  • Haskell
    import Data.List (elemIndices)
    a098565 n = a098565_list !! (n-1)
    a098565_list = map (+ 2 ) $ elemIndices 3 a059233_list
    -- Reinhard Zumkeller, Dec 24 2012

Formula

A059233(a(n)) = 3. - Reinhard Zumkeller, Dec 24 2012

Extensions

a(7) from T. D. Noe, Jul 13 2005