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

A076245 Positions of records in A051547.

Original entry on oeis.org

1, 3, 5, 7, 11, 15, 17, 19, 23, 29, 47, 51, 53, 59, 81, 83, 85, 101, 103, 107, 149, 163, 167, 173, 179, 191, 197, 227, 251, 255, 257, 263, 269, 283, 293, 311, 317, 347, 359, 367, 383, 389, 467, 479, 487, 503, 509, 557, 563, 569, 587, 607, 619, 643, 653, 677
Offset: 1

Views

Author

Labos Elemer, Oct 08 2002

Keywords

Comments

Observe that both primes and composites (including 15, 51, 81, 85, and 255) occur.
In totients of consecutive terms some prime-factor appears at higher power than in preceding ones: see A076246 and A051451.

Crossrefs

Programs

  • Mathematica
    With[{s = FoldList[LCM @@ {#1, EulerPhi@ #2} &, Range[700]]}, Map[FirstPosition[s, #][[1]] &, Union@ FoldList[Max, s]]] (* Michael De Vlieger, Dec 09 2018 *)
  • PARI
    lista(nn) = {least = 1; print1(1, ", "); for (n=2, nn, nleast = lcm(least, eulerphi(n)); if (nleast > least, print1(n, ", ")); least = nleast;);} \\ Michel Marcus, Jul 30 2017
Showing 1-1 of 1 results.