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.

A290304 Values of uphi(k) = uphi(k+1).

Original entry on oeis.org

1, 12, 24, 120, 96, 180, 432, 744, 720, 864, 840, 1200, 1260, 1680, 2520, 1728, 2784, 2880, 3744, 4032, 5040, 2592, 4224, 5040, 5760, 11520, 11880, 9216, 18000, 20160, 17280, 12480, 17280, 20160, 28080, 20160, 23040, 21600, 32256, 30240, 52080, 34560, 57600
Offset: 1

Views

Author

Amiram Eldar, Jul 26 2017

Keywords

Comments

The values of unitary totient function of numbers such that k and k+1 have the same value.
The unitary version of A003275.

Crossrefs

Programs

  • Mathematica
    uphi[n_] := If[n==1, 1, (Times @@ (Table[#[[1]]^#[[2]] - 1, {1}] & /@ FactorInteger[n]))[[1]]]; a={}; u1=0; For[k=0, k<10^5, k++; u2=uphi[k]; If[u1==u2, a = AppendTo[a, u1]]; u1=u2]; a

Formula

a(n) = A047994(A287055(n)).