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.

A073356 Greatest common divisor of squarefree kernel of n and sum of squarefree kernels of numbers <= n.

Original entry on oeis.org

1, 1, 3, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 5, 2, 17, 1, 1, 2, 7, 1, 1, 2, 1, 1, 1, 2, 1, 3, 1, 2, 3, 1, 1, 6, 1, 1, 3, 2, 1, 3, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 53, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 3, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 3, 1, 2, 1, 1, 1, 14, 1, 1, 1, 2, 1, 1, 7, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1
Offset: 1

Views

Author

Reinhard Zumkeller, Jul 29 2002

Keywords

Crossrefs

Programs

  • Mathematica
    rad[n_] := Times @@ FactorInteger[n][[;; , 1]]; seq[nmax_] := Module[{v = Array[rad, nmax]}, GCD[v, Accumulate[v]]]; seq[100] (* Amiram Eldar, Apr 06 2025 *)

Formula

a(n) = GCD(A007947(n), A073355(n)).