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

A366655 Number of distinct prime divisors of 8^n + 1.

Original entry on oeis.org

1, 1, 2, 2, 2, 3, 4, 3, 3, 3, 5, 4, 4, 3, 6, 5, 3, 5, 6, 4, 4, 5, 6, 4, 5, 6, 9, 6, 5, 4, 10, 4, 3, 7, 9, 10, 6, 6, 8, 5, 6, 6, 10, 5, 7, 9, 8, 6, 7, 6, 12, 9, 5, 5, 10, 10, 8, 6, 8, 7, 8, 3, 9, 10, 4, 10, 12, 7, 8, 6, 14, 7, 8, 5, 10, 10, 8, 11, 16, 5, 7, 10
Offset: 0

Views

Author

Sean A. Irvine, Oct 15 2023

Keywords

Crossrefs

Programs

  • PARI
    for(n = 0, 100, print1(omega(8^n + 1), ", "))

Formula

a(n) = omega(8^n+1) = A001221(A062395(n)).
a(n) = A046799(3*n). - Max Alekseyev, Jan 09 2024

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

Original entry on oeis.org

1, 6, 48, 324, 3840, 19800, 186624, 1365336, 16515072, 84768120, 760320000, 5632621632, 64258375680, 366369658200, 3105655160832, 20140520400000, 280012271910912, 1495522910085120, 12824556668190720, 95907982079387520, 1080582572777472000, 5688765822212629632
Offset: 0

Views

Author

Sean A. Irvine, Oct 15 2023

Keywords

Crossrefs

Programs

  • Mathematica
    EulerPhi[8^Range[0, 21] + 1] (* Paul F. Marrero Romero, Oct 17 2023 *)
  • PARI
    {a(n) = eulerphi(8^n+1)}
    
  • Python
    from sympy import totient
    def A366658(n): return totient((1<<3*n)+1) # Chai Wah Wu, Oct 15 2023

Formula

a(n) = A000010(A062395(n)). - Paul F. Marrero Romero, Nov 06 2023
a(n) = A053285(3*n). - Max Alekseyev, Jan 09 2024

A366609 Smallest prime dividing 4^n + 1.

Original entry on oeis.org

2, 5, 17, 5, 257, 5, 17, 5, 65537, 5, 17, 5, 97, 5, 17, 5, 641, 5, 17, 5, 257, 5, 17, 5, 193, 5, 17, 5, 257, 5, 17, 5, 274177, 5, 17, 5, 97, 5, 17, 5, 65537, 5, 17, 5, 257, 5, 17, 5, 641, 5, 17, 5, 257, 5, 17, 5, 449, 5, 17, 5, 97, 5, 17, 5, 59649589127497217
Offset: 0

Views

Author

Sean A. Irvine, Oct 14 2023

Keywords

Crossrefs

A366670 Smallest prime dividing 6^n + 1.

Original entry on oeis.org

2, 7, 37, 7, 1297, 7, 13, 7, 17, 7, 37, 7, 1297, 7, 37, 7, 353, 7, 13, 7, 41, 7, 37, 7, 17, 7, 37, 7, 281, 7, 13, 7, 2753, 7, 37, 7, 577, 7, 37, 7, 17, 7, 13, 7, 89, 7, 37, 7, 193, 7, 37, 7, 1297, 7, 13, 7, 17, 7, 37, 7, 41, 7, 37, 7, 4926056449, 7, 13, 7, 137
Offset: 0

Views

Author

Sean A. Irvine, Oct 15 2023

Keywords

Crossrefs

Programs

Formula

a(n) = A020639(A062394(n)). - Paul F. Marrero Romero, Oct 17 2023
Showing 1-4 of 4 results.