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.

A300914 Records in A045763.

Original entry on oeis.org

0, 1, 3, 5, 7, 9, 11, 15, 16, 17, 23, 25, 29, 33, 39, 47, 49, 55, 63, 71, 73, 79, 81, 87, 99, 105, 111, 115, 119, 127, 129, 147, 151, 157, 159, 163, 167, 169, 183, 199, 203, 207, 235, 241, 255, 279, 301, 313, 327, 329, 337, 367, 373, 387, 411, 417, 463, 477
Offset: 1

Views

Author

Michael De Vlieger, Mar 15 2018

Keywords

Crossrefs

Programs

  • Mathematica
    With[{s = Array[1 + # - EulerPhi@ # - DivisorSigma[0, #] &, 700]}, Union@ FoldList[Max, 0, s]]
    DeleteDuplicates[Table[n+1-DivisorSigma[0,n]-EulerPhi[n],{n,1000}],GreaterEqual] (* Harvey P. Dale, Apr 03 2023 *)
  • PARI
    lista(nn) = {rec = -1; for (n=1, nn, new = n+1-numdiv(n)-eulerphi(n); if (new > rec, print1(new, ", "); rec = new););} \\ Michel Marcus, Mar 18 2018