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.

A366759 a(n) = phi(n!-1), where phi is Euler's totient function (A000010).

Original entry on oeis.org

1, 4, 22, 96, 718, 5038, 38544, 329780, 3503640, 33166848, 479001598, 6223425864, 87178291198, 1168577230080, 20915909651520, 332351050332096, 6293831116536216, 121458761380686016, 2432882508925834560, 48311155748401677120, 1113688776127971818016
Offset: 2

Views

Author

Sean A. Irvine, Oct 20 2023

Keywords

Crossrefs

Programs

  • Mathematica
    EulerPhi[Range[2,25]!-1] (* Paolo Xausa, Oct 21 2023 *)
  • PARI
    {a(n) = eulerphi(n!-1)}
    
  • Python
    from math import factorial
    from sympy import totient
    def A366759(n): return totient(factorial(n)-1) # Chai Wah Wu, Oct 20 2023

Formula

a(n) = A000010(A033312(n)).
Showing 1-1 of 1 results.