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.

A260236 Number of prime factors, with multiplicity, of the n-th hexagonal number (A000384).

Original entry on oeis.org

2, 2, 3, 3, 3, 2, 5, 3, 3, 3, 4, 3, 5, 3, 5, 3, 5, 2, 5, 3, 3, 4, 5, 4, 4, 4, 5, 3, 4, 2, 8, 4, 3, 4, 5, 2, 5, 4, 5, 5, 4, 3, 5, 4, 4, 3, 7, 3, 6, 3, 4, 4, 5, 3, 6, 3, 4, 4, 6, 3, 4, 6, 7, 4, 4, 3, 7, 3, 4, 3, 7, 3, 5, 4, 4, 5, 5, 2, 7, 6, 3, 4, 5, 4, 5, 3
Offset: 2

Views

Author

Colin Barker, Jul 20 2015

Keywords

Examples

			a(4) = 3 because A000384(4) = 28 = 2^2 * 7.
		

Crossrefs

Programs

  • Mathematica
    Rest[PrimeOmega[PolygonalNumber[6,Range[90]]]] (* Harvey P. Dale, Aug 10 2021 *)
  • PARI
    pg(m, n) = (n^2*(m-2)-n*(m-4))/2 \\ n-th m-gonal number
    a(n) = bigomega(pg(6, n))

Formula

a(n) = A001222(A000384(n)).