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.

A387140 a(n) = (1/n) * Product_{k=1..n} radical(k) for n >= 1, a(0) = 1, where radical(n) is the product of distinct prime factors of n, cf. A007947.

Original entry on oeis.org

1, 1, 1, 2, 3, 12, 60, 360, 630, 1680, 15120, 151200, 831600, 9979200, 129729600, 1816214400, 3405402000, 54486432000, 308756448000, 5557616064000, 52797352608000, 1055947052160000, 22174888095360000, 487847538097920000, 2805123344063040000, 13464592051502592000
Offset: 0

Views

Author

Peter Luschny, Aug 18 2025

Keywords

Crossrefs

Programs

  • Maple
    a := n -> if n = 0 then 1 else mul(NumberTheory:-Radical(i), i=1..n) / n fi:
  • Mathematica
    A387140[n_] := If[n == 0, 1, Quotient[Times @@ ResourceFunction["IntegerRadical"][Range[1, n]], n]]; Table[A387140[n], {n, 0, 25}]

Formula

a(n) = A048803(n) / n for n >= 1.