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.

A228378 Numbers n such that tb(n) = tb(n+1) where tb(n) = A048784(n) is the number of divisors of binomial(2*n, n).

Original entry on oeis.org

9, 10, 22, 34, 44, 45, 51, 56, 82, 106, 130, 141, 142, 162, 166, 177, 185, 190, 230, 262, 273, 274, 320, 322, 346, 352, 354, 394, 440, 454, 470, 526, 536, 550, 562, 586, 606, 624, 635, 670, 692, 717, 754, 766, 779, 814, 826, 831, 862, 882, 891, 920, 934
Offset: 1

Views

Author

Michel Marcus, Aug 21 2013

Keywords

Crossrefs

Programs

  • Mathematica
    SequencePosition[Table[DivisorSigma[0,Binomial[2n,n]],{n,1000}],{x_,x_}][[All,2]] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Apr 15 2019 *)
  • PARI
    lista(nn) = my(last = 0); for (i=1, nn, new = numdiv(binomial(2*i,i)); if (last == new, print1(i, ", ")); last = new) \\ Michel Marcus, Aug 21 2013