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.

A355032 a(n) is the maximum number of prime signatures of numbers with n divisors that have the same number of prime divisors (counted with multiplicity).

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1
Offset: 1

Views

Author

Amiram Eldar, Jun 16 2022

Keywords

Examples

			a(2) = 1 since the numbers with 2 divisors are all primes and thus have only 1 prime signature.
a(36) = 2 since numbers with 36 divisors have 2 prime signatures, p1^5 * p2^5 and p1 * p2 * p3^8, that correspond to numbers with 10 prime divisors (counted with multiplicity).
a(72) = 3 since numbers with 72 divisors have 3 prime signatures, p1 * p2^5 * p3^5, p1^2 * p2^2 * p3^7 and p1 * p2 * p3 * p4^8, that correspond to numbers with 11 prime divisors (counted with multiplicity).
		

Crossrefs

Programs

  • Mathematica
    Table[Max[Tally[Total[#-1]& /@ f[n]][[;;,2]]], {n, 1, 100}] (* using the function f by T. D. Noe at A162247 *)

Formula

a(A355033(n)) = n.
Showing 1-1 of 1 results.