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.

Previous Showing 11-13 of 13 results.

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

A366713 Number of prime factors of 12^n + 1 (counted with multiplicity).

Original entry on oeis.org

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

Views

Author

Sean A. Irvine, Oct 17 2023

Keywords

Crossrefs

Programs

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

Formula

a(n) = bigomega(12^n+1) = A001222(A178248(n)).

A366720 Largest prime factor of 12^n+1.

Original entry on oeis.org

2, 13, 29, 19, 233, 19141, 20593, 13063, 260753, 1801, 85403261, 57154490053, 2227777, 222379, 13156924369, 35671, 1200913648289, 66900193189411, 122138321401, 905265296671, 67657441, 1885339, 68368660537, 49489630860836437, 592734049, 438472201
Offset: 0

Views

Author

Sean A. Irvine, Oct 17 2023

Keywords

Crossrefs

Programs

  • Mathematica
    Table[FactorInteger[12^n + 1][[-1, 1]], {n, 0, 20}]

Formula

a(n) = A006530(A178248(n)). - Paul F. Marrero Romero, Dec 07 2023
Previous Showing 11-13 of 13 results.