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.

A167448 Smallest number with n distinct positive cubic exponents in its prime factorization.

Original entry on oeis.org

1, 2, 768, 4403012567040, 384637545508886260255243527782400000000
Offset: 0

Views

Author

Matthew Vandermast, Nov 09 2009

Keywords

Examples

			a(2)=768, which has a prime factorization of 2^8 * 3^1.
		

Crossrefs

Subsequence of A025487.

Programs

  • Mathematica
    Table[Product[Prime[k]^((n - k + 1)^3), {k, 1, n}], {n, 0, 5}] (* Vaclav Kotesovec, Aug 10 2021 *)

Formula

a(n) = Product_{k=1..n} prime(k)^((n-k+1)^3).