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.

A366608 a(n) = phi(4^n+1), where phi is Euler's totient function (A000010).

Original entry on oeis.org

1, 4, 16, 48, 256, 800, 3840, 12544, 65536, 186624, 986880, 3345408, 16515072, 52306176, 252645120, 760320000, 4288266240, 13628740608, 64258375680, 218462552064, 1095233372160, 3105655160832, 16510446886912, 56000724240384, 280012271910912, 869940000000000
Offset: 0

Views

Author

Sean A. Irvine, Oct 14 2023

Keywords

Crossrefs

Programs

  • Mathematica
    EulerPhi[4^Range[0,30]+1] (* Paolo Xausa, Oct 14 2023 *)
  • PARI
    {a(n) = eulerphi(4^n+1)}
    
  • Python
    from sympy import totient
    def A366608(n): return totient((1<<(n<<1))+1) # Chai Wah Wu, Oct 14 2023

Formula

a(n) = A053285(2*n). - Max Alekseyev, Jan 08 2024