login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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).
1
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,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..2611
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 *)
PROG
(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
CROSSREFS
Sequence in context: A326523 A061410 A309485 * A326464 A174042 A263261
KEYWORD
nonn
AUTHOR
Michel Marcus, Aug 21 2013
STATUS
approved