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

A366714 Number of divisors of 12^n+1.

Original entry on oeis.org

2, 2, 4, 8, 4, 4, 8, 8, 8, 32, 12, 4, 16, 24, 16, 128, 4, 8, 32, 16, 64, 384, 64, 16, 64, 64, 32, 1024, 8, 8, 48, 8, 4, 512, 16, 32, 128, 16, 32, 1536, 16, 32, 64, 32, 16, 4096, 8, 32, 32, 32, 512, 512, 32, 32, 1024, 128, 512, 1536, 192, 64, 1024, 32, 64
Offset: 0

Views

Author

Sean A. Irvine, Oct 17 2023

Keywords

Examples

			a(4)=4 because 12^4+1 has divisors {1, 89, 233, 20737}.
		

Crossrefs

Programs

  • Maple
    a:=n->numtheory[tau](12^n+1):
    seq(a(n), n=0..100);
  • Mathematica
    DivisorSigma[0, 12^Range[0, 70] + 1] (* Paolo Xausa, Apr 20 2025 *)
  • PARI
    a(n) = numdiv(12^n+1);

Formula

a(n) = sigma0(12^n+1) = A000005(A178248(n)).

A366686 Number of distinct prime divisors of 11^n + 1.

Original entry on oeis.org

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

Views

Author

Sean A. Irvine, Oct 16 2023

Keywords

Crossrefs

Programs

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

Formula

a(n) = omega(11^n+1) = A001221(A034524(n)).

A366689 Sum of the divisors of 11^n+1.

Original entry on oeis.org

3, 28, 186, 3458, 21966, 375816, 2911272, 45470096, 340452396, 6278429920, 39543942612, 706019328000, 4708961513592, 82162955169792, 599236951715280, 11195197038864384, 68925937595777100, 1179397832668228992, 9136813499663186064, 144079834776308121600
Offset: 0

Views

Author

Sean A. Irvine, Oct 16 2023

Keywords

Examples

			a(4)=21966 because 11^4+1 has divisors {1, 2, 7321, 14642}.
		

Crossrefs

Programs

  • Maple
    a:=n->numtheory[sigma](11^n+1):
    seq(a(n), n=0..100);
  • Mathematica
    DivisorSigma[1,11^Range[0,20]+1] (* Harvey P. Dale, Jun 22 2025 *)

Formula

a(n) = sigma(11^n+1) = A000203(A034524(n)).

A366606 Number of divisors of 4^n+1.

Original entry on oeis.org

2, 2, 2, 4, 2, 6, 4, 8, 2, 16, 4, 8, 8, 16, 4, 48, 4, 16, 16, 16, 4, 64, 8, 32, 8, 64, 8, 64, 8, 8, 16, 32, 4, 64, 12, 96, 32, 32, 16, 768, 8, 32, 32, 32, 16, 1536, 4, 16, 8, 64, 64, 512, 4, 16, 64, 96, 32, 256, 8, 128, 64, 64, 16, 1024, 4, 768, 128, 64, 16
Offset: 0

Views

Author

Sean A. Irvine, Oct 14 2023

Keywords

Examples

			a(3)=4 because 4^3+1 has divisors {1, 5, 13, 65}.
		

Crossrefs

Programs

  • Maple
    a:=n->numtheory[tau](4^n+1):
    seq(a(n), n=0..100);
  • Mathematica
    DivisorSigma[0,4^Range[0,100]+1] (* Paolo Xausa, Oct 14 2023 *)
  • PARI
    a(n) = numdiv(4^n+1);
    
  • Python
    from sympy import divisor_count
    def A366606(n): return divisor_count((1<<(n<<1))+1) # Chai Wah Wu, Oct 14 2023

Formula

a(n) = sigma0(4^n+1) = A000005(A052539(n)).
a(n) = A046798(2*n). - Max Alekseyev, Jan 08 2024

A366616 Number of divisors of 5^n+1.

Original entry on oeis.org

2, 4, 4, 12, 4, 8, 8, 16, 8, 32, 16, 32, 8, 16, 8, 96, 8, 16, 32, 32, 16, 576, 16, 16, 16, 32, 24, 320, 8, 16, 128, 32, 16, 384, 64, 128, 64, 32, 16, 192, 32, 64, 64, 64, 8, 512, 8, 32, 32, 128, 128, 768, 32, 32, 64, 128, 128, 384, 8, 64, 64, 64, 16, 24576, 16
Offset: 0

Views

Author

Sean A. Irvine, Oct 14 2023

Keywords

Examples

			a(3)=12 because 5^3+1 has divisors {1, 2, 3, 6, 7, 9, 14, 18, 21, 42, 63, 126}.
		

Crossrefs

Programs

  • Maple
    a:=n->numtheory[tau](5^n+1):
    seq(a(n), n=0..100);
  • Mathematica
    DivisorSigma[0, 5^Range[0, 70] + 1] (* Paolo Xausa, Apr 20 2025 *)
  • PARI
    a(n) = numdiv(5^n+1);

Formula

a(n) = sigma0(5^n+1) = A000005(A034474(n)).

A366628 Number of divisors of 6^n+1.

Original entry on oeis.org

2, 2, 2, 4, 2, 8, 8, 12, 4, 8, 8, 4, 4, 16, 8, 32, 8, 8, 64, 8, 8, 48, 16, 8, 16, 16, 16, 32, 32, 16, 512, 4, 8, 64, 8, 1536, 32, 16, 8, 512, 32, 16, 128, 4, 8, 128, 32, 4, 128, 64, 64, 256, 16, 32, 1024, 192, 64, 128, 8, 4, 64, 8, 4, 768, 8, 256, 2048, 32, 32
Offset: 0

Views

Author

Sean A. Irvine, Oct 14 2023

Keywords

Examples

			a(3)=4 because 6^3+1 has divisors {1, 7, 31, 217}.
		

Crossrefs

Programs

  • Maple
    a:=n->numtheory[tau](6^n+1):
    seq(a(n), n=0..100);
  • Mathematica
    DivisorSigma[0, 6^Range[0, 70] + 1] (* Paolo Xausa, Apr 19 2025 *)
  • PARI
    a(n) = numdiv(6^n+1);

Formula

a(n) = sigma0(6^n+1) = A000005(A062394(n)).

A366637 Number of divisors of 7^n+1.

Original entry on oeis.org

2, 4, 6, 8, 4, 16, 24, 16, 8, 16, 32, 16, 32, 16, 12, 64, 8, 8, 48, 16, 16, 128, 48, 8, 16, 32, 24, 32, 64, 8, 512, 32, 16, 128, 48, 1024, 256, 16, 12, 256, 64, 64, 96, 512, 32, 2048, 96, 8, 64, 2048, 640, 128, 32, 64, 384, 3072, 256, 256, 96, 64, 512, 8, 48
Offset: 0

Views

Author

Sean A. Irvine, Oct 15 2023

Keywords

Examples

			a(4)=4 because 7^4+1 has divisors {1, 2, 1201, 2402}.
		

Crossrefs

Programs

  • Maple
    a:=n->numtheory[tau](7^n+1):
    seq(a(n), n=0..100);
  • Mathematica
    DivisorSigma[0, 7^Range[0, 62] + 1] (* Paul F. Marrero Romero, Oct 16 2023 *)
  • PARI
    a(n) = numdiv(7^n+1);

Formula

a(n) = sigma0(7^n+1) = A000005(A034491(n)).

A366656 Number of divisors of 8^n+1.

Original entry on oeis.org

2, 3, 4, 8, 4, 12, 16, 12, 8, 20, 48, 24, 16, 12, 64, 64, 8, 48, 64, 24, 16, 64, 64, 24, 32, 96, 768, 192, 32, 24, 1536, 24, 8, 256, 512, 1536, 64, 96, 256, 64, 64, 96, 1024, 48, 128, 1280, 256, 96, 128, 96, 8192, 1024, 32, 48, 1024, 2304, 256, 192, 256, 192
Offset: 0

Views

Author

Sean A. Irvine, Oct 15 2023

Keywords

Examples

			a(4)=4 because 8^4+1 has divisors {1, 17, 241, 4097}.
		

Crossrefs

Programs

  • Maple
    a:=n->numtheory[tau](8^n+1):
    seq(a(n), n=0..100);
  • Mathematica
    DivisorSigma[0, 8^Range[0,59] + 1] (* Paul F. Marrero Romero, Nov 12 2023 *)
  • PARI
    a(n) = numdiv(8^n+1);

Formula

a(n) = sigma0(8^n+1) = A000005(A062395(n)).
a(n) = A046798(3*n). - Max Alekseyev, Jan 09 2024

A366665 Number of divisors of 9^n+1.

Original entry on oeis.org

2, 4, 4, 8, 8, 12, 8, 16, 4, 16, 8, 16, 64, 16, 16, 48, 4, 16, 16, 16, 32, 128, 32, 16, 16, 128, 16, 32, 64, 16, 128, 32, 4, 64, 32, 384, 256, 32, 64, 128, 32, 32, 1024, 128, 64, 384, 16, 16, 64, 512, 64, 256, 128, 64, 512, 192, 512, 512, 32, 8, 2048, 64, 16
Offset: 0

Views

Author

Sean A. Irvine, Oct 15 2023

Keywords

Examples

			a(2)=4 because 9^2+1 has divisors {1, 2, 41, 82}.
		

Crossrefs

Programs

  • Maple
    a:=n->numtheory[tau](9^n+1):
    seq(a(n), n=0..100);
  • Mathematica
    DivisorSigma[0, 9^Range[0,62] + 1] (* Paul F. Marrero Romero, Nov 13 2023 *)
  • PARI
    a(n) = numdiv(9^n+1);

Formula

a(n) = sigma0(9^n+1) = A000005(A062396(n)).
a(n) = A366577(2*n). - Max Alekseyev, Jan 08 2024

A366687 Number of prime factors of 11^n + 1 (counted with multiplicity).

Original entry on oeis.org

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

Views

Author

Sean A. Irvine, Oct 16 2023

Keywords

Crossrefs

Programs

  • Mathematica
    PrimeOmega[11^Range[70]+1]
  • PARI
    a(n)=bigomega(11^n+1)

Formula

a(n) = bigomega(11^n+1) = A001222(A034524(n)).
Showing 1-10 of 10 results.