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-3 of 3 results.

A364718 Numbers k such that d(k) > d(k+1) > d(k+2), where d(n) is the number of divisors of n.

Original entry on oeis.org

45, 80, 81, 105, 165, 224, 225, 260, 261, 272, 315, 324, 345, 357, 384, 405, 435, 440, 441, 464, 465, 476, 477, 495, 512, 555, 560, 561, 567, 585, 594, 595, 620, 624, 627, 650, 651, 675, 704, 714, 715, 795, 800, 825, 836, 837, 855, 860, 861, 884, 885, 891, 896, 915
Offset: 1

Views

Author

Seiichi Manyama, Aug 04 2023

Keywords

Crossrefs

Programs

  • PARI
    isok(n) = numdiv(n)>numdiv(n+1) && numdiv(n+1)>numdiv(n+2);

A364719 Numbers k such that d(k) > d(k+1) > d(k+2) > d(k+3), where d(n) is the number of divisors of n.

Original entry on oeis.org

80, 224, 260, 440, 464, 476, 560, 594, 650, 714, 836, 860, 884, 980, 1016, 1088, 1184, 1280, 1376, 1520, 1700, 1862, 1904, 2024, 2060, 2096, 2444, 2450, 2816, 2870, 2960, 2996, 3020, 3024, 3164, 3200, 3320, 3380, 3450, 3620, 3800, 3944, 3968, 4004, 4130, 4136, 4250
Offset: 1

Views

Author

Seiichi Manyama, Aug 04 2023

Keywords

Crossrefs

Programs

  • Mathematica
    Flatten@Position[Differences@#&/@Partition[DivisorSigma[0,Range@5000],4,1], {?(#<0&)..}] (* _Hans Rudolf Widmer, Mar 11 2024 *)
  • PARI
    isok(n) = numdiv(n)>numdiv(n+1) && numdiv(n+1)>numdiv(n+2) && numdiv(n+2)>numdiv(n+3);

A364717 Numbers k such that d(k) < d(k+1) < d(k+2) < d(k+3) < d(k+4), where d(n) is the number of divisors of n.

Original entry on oeis.org

11371, 11372, 35521, 38281, 45613, 48121, 50821, 50822, 52321, 52322, 54421, 54422, 59341, 59342, 71821, 79621, 86873, 87181, 117841, 125737, 127852, 130021, 130022, 132051, 132206, 133396, 151082, 153221, 173221, 180001, 184973, 186481, 195541, 195542, 196171, 196172
Offset: 1

Views

Author

Seiichi Manyama, Aug 04 2023

Keywords

Crossrefs

Programs

  • PARI
    isok(n) = numdiv(n)
    				
Showing 1-3 of 3 results.