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.

Showing 1-5 of 5 results.

A003015 Numbers that occur 5 or more times in Pascal's triangle.

Original entry on oeis.org

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

Views

Author

Keywords

Comments

The subject of a recent thread on sci.math. Apparently it has been known for many years that there are infinitely many numbers that occur at least 6 times in Pascal's triangle, namely the solutions to binomial(n,m-1) = binomial(n-1,m) given by n = F_{2k}*F_{2k+1}; m = F_{2k-1}*F_{2k} where F_i is the i-th Fibonacci number. The first of these outside the range of the existing database entry is {104 choose 39} = {103 choose 40} = 61218182743304701891431482520. - Christopher E. Thompson, Mar 09 2001
It may be that there are no terms that appear exactly 5 times in Pascal's triangle, in which case the title could be changed to "Numbers that occur 6 or more times in Pascal's triangle". - N. J. A. Sloane, Nov 24 2004
No other terms below 33*10^16 (David W. Wilson).
61218182743304701891431482520 really is the next term. Weger shows this and I checked it. - T. D. Noe, Nov 15 2004
Blokhuis et al. show that there are no other solutions less than 10^60, nor within the first 10^6 rows of Pascal's triangle other than those given by the parametric solution mentioned above. - Christopher E. Thompson, Jan 19 2018
See the b-file of A090162 for the explicit numbers produced by the parametric formula. - Jeppe Stig Nielsen, Aug 23 2020

References

  • L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 93, #47.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Cf. A182237, A098565 (subsequence).
Cf. A090162 (easy subsequence).

A059233 Number of rows in which n appears in Pascal's triangle A007318.

Original entry on oeis.org

1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
Offset: 2

Views

Author

Fabian Rothelius, Jan 20 2001

Keywords

Comments

Central binomial coefficients c = A000984(n) > 1 appear once in the middle column C(2n, n), and thereafter in one or more later rows to the left as C(r,k) and to the right as C(r, r-k), k < r/2; the last time in row r = c = C(c,1) = C(c,c-1). For these, a(n) = (A003016(n)+1)/2. For all other numbers n > 1, a(n) = A003016(n)/2. - M. F. Hasler, Mar 01 2023

Examples

			6 appears in both row 4 and row 6 in Pascal's triangle, therefore a(6) = 2.
		

References

  • L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 93, #47.
  • C. S. Ogilvy, Tomorrow's Math. 2nd ed., Oxford Univ. Press, 1972, p. 96.

Crossrefs

Programs

  • Haskell
    a059233 n = length $ filter (n `elem`) $
                                take (fromInteger n) $ tail a007318_tabl
    a059233_list = map a059233 [2..]
    -- Reinhard Zumkeller, Dec 24 2012
    
  • Mathematica
    nmax = 101; A007318 = Table[Binomial[n, k], {n, 0, nmax}, {k, 0, n}]; a[n_] := Position[A007318, n][[All, 1]] // Union // Length; Table[a[n], {n, 2, nmax}] (* Jean-François Alcover, Sep 09 2013 *)
  • PARI
    A059233(n)=A003016(n)\/2 \\ M. F. Hasler, Mar 01 2023

Formula

a(A180058(n)) = n and a(m) < n for m < A180058(n); a(A182237(n)) = 2; a(A098565(n)) = 3. - Reinhard Zumkeller, Dec 24 2012
a(n) = ceiling(A003016(n)/2). - M. F. Hasler, Mar 01 2023

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

A185024 Numbers occurring in just one row of Pascal's triangle.

Original entry on oeis.org

2, 3, 4, 5, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 19, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68, 69, 71, 72, 73, 74, 75, 76, 77, 79, 80, 81
Offset: 1

Views

Author

Reinhard Zumkeller, Dec 24 2012

Keywords

Crossrefs

Programs

  • Haskell
    import Data.List (elemIndices)
    a185024 n = a185024_list !! (n-1)
    a185024_list = map (+ 2 ) $ elemIndices 1 a059233_list

Formula

A059233(a(n)) = 1.
a(n) = A137905(n-1), n >= 2. - Elijah Beregovsky, May 14 2019

A180058 Smallest number occurring in exactly n rows of Pascal's triangle.

Original entry on oeis.org

2, 6, 120, 3003
Offset: 1

Views

Author

Reinhard Zumkeller, Dec 24 2012

Keywords

Comments

A059233(a(n)) = n and A059233(m) < n for m < a(n).

Examples

			.  n  A180058  referred equal binomial coefficients (A007318)  A059233
.  -  -------  ----------------------------------------------  -------
.  1        2   C (2, 1)                                             1
.  2        6   C (4, 2)   C (6, 1)                                  2
.  3      120   C (10, 3)  C (16, 2)  C (120, 1)                     3
.  4     3003   C (14, 6)  C (15, 5)  C (78, 2)   C (3003, 1)        4 .
		

Crossrefs

Programs

  • Haskell
    import Data.List (elemIndex)
    import Data.Maybe (fromJust)
    a180058 = (+ 2) . fromJust . (`elemIndex` a059233_list)
Showing 1-5 of 5 results.