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.

A074693 a(1) = 1, a(n) = a(n-1) + phi(a(n-1)).

Original entry on oeis.org

1, 2, 3, 5, 9, 15, 23, 45, 69, 113, 225, 345, 521, 1041, 1733, 3465, 4905, 7497, 11529, 18009, 29097, 47817, 71577, 114777, 184761, 307881, 482841, 804573, 1212813, 1854333, 2993517, 4953069, 7752429, 12826269, 21376953, 34207353, 55027593, 91712493, 152705493
Offset: 1

Views

Author

Benoit Cloitre, Sep 03 2002

Keywords

Comments

Partial sums of A165931. - Jaroslav Krizek, Sep 30 2009

Crossrefs

Programs

  • Maple
    a:= proc(n) option remember; `if`(n=1, 1,
          numtheory[phi](a(n-1))+a(n-1))
        end:
    seq(a(n), n=1..50);  # Alois P. Heinz, Oct 02 2020
  • Mathematica
    NestList[# + EulerPhi@ # &, 1, 36] (* Robert G. Wilson v, Mar 02 2011 *)

Formula

1 < a(n+1)/a(n) <= 2 . Does limit a(n+1)/a(n) exist ?