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.

A083795 Numbers k such that k and k-1 have the same number of divisors. Numbers not included in A083794.

Original entry on oeis.org

3, 15, 22, 27, 34, 35, 39, 45, 58, 76, 86, 87, 94, 95, 99, 105, 117, 119, 123, 134, 136, 142, 143, 146, 148, 159, 172, 178, 190, 202, 203, 206, 214, 215, 218, 219, 231, 232, 243, 244, 245, 254, 286, 297, 299, 302, 303, 327, 333, 335, 345, 375, 376, 382, 388
Offset: 1

Views

Author

Amarnath Murthy, May 07 2003

Keywords

Comments

Also numbers n such that sigma_0(n+1) * sigma_0(n) / (sigma_0(n+1) + sigma_0(n)) = c, c an integer. - Ctibor O. Zizka, Nov 01 2008
Heath-Brown proved that this sequence is infinite. Hildebrand and Erdős, Pomerance, & Sárközy show that n sqrt(log log n) << a(n) << n (log log n)^3, where << is Vinogradov notation. - Charles R Greathouse IV, Oct 20 2013

Crossrefs

Cf. A083794.

Programs

  • Maple
    with(numtheory): for n from 3 to 10^3 do if tau(n) = tau(n-1) then printf(`%d,`,n) fi: od:
  • Mathematica
    SequencePosition[DivisorSigma[0,Range[400]],{x_,x_}][[All,2]] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Apr 09 2019 *)
  • PARI
    is(n)=n>2 && numdiv(n)==numdiv(n-1) \\ Charles R Greathouse IV, Jul 21 2015

Extensions

Corrected and extended by James Sellers, May 19 2003