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.

A377486 a(n) = product of {p^k : p | n, k = 1..floor(log n/log p)}, a(1) = 1.

Original entry on oeis.org

1, 2, 3, 8, 5, 24, 7, 64, 27, 320, 11, 1728, 13, 448, 135, 1024, 17, 27648, 19, 5120, 189, 11264, 23, 27648, 125, 13312, 729, 7168, 29, 93312000, 31, 32768, 8019, 557056, 875, 23887872, 37, 622592, 9477, 4096000, 41, 167215104, 43, 360448, 91125, 753664, 47, 23887872
Offset: 1

Views

Author

Michael De Vlieger, Oct 29 2024

Keywords

Comments

Compare with A064446, where A064446(n) = Product_{p|n} p^floor(log n / log p).

Examples

			Let S(n) = row n of A377485 = { p^k : p | n, p^k <= n, k > 0 }.
a(4) = 8 since S(4) = {2, 4} and the product of these is 8.
a(6) = 24 since S(6) = {2, 3, 4} and the product of these is 24.
a(12) = 1728 since S(12) = {2, 3, 4, 8, 9}, etc.
		

Crossrefs

Programs

  • Mathematica
    {1}~Join~Table[Times @@ Flatten@ Map[#^Range[Floor@ Log[#, n]] &, FactorInteger[n][[All, 1]]], {n, 2, 120}]

Formula

a(p) = p for prime p.
a(p^k) = Product_{j=1..k} p^j = p^(k*(k+1)/2) = p^A000217(k).
a(n) = Product_{p|n} p^(k*(k+1)/2), where k = floor(log n / log p).
Product of row n of A377485.