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.

A073354 Binomial coefficient ( n, squarefree kernel(n) ).

Original entry on oeis.org

1, 1, 1, 6, 1, 1, 1, 28, 84, 1, 1, 924, 1, 1, 1, 120, 1, 18564, 1, 184756, 1, 1, 1, 134596, 53130, 1, 2925, 40116600, 1, 1, 1, 496, 1, 1, 1, 1947792, 1, 1, 1, 847660528, 1, 1, 1, 2104098963720, 344867425584, 1, 1, 12271512, 85900584, 10272278170, 1
Offset: 1

Views

Author

Reinhard Zumkeller, Jul 29 2002

Keywords

Comments

a(n)=1 iff n is squarefree.

Crossrefs

Programs

  • Maple
    f:= proc(n) local k;
      k:= convert(numtheory:-factorset(n),`*`);
      binomial(n,k)
    end proc:
    map(f, [$1..60]); # Robert Israel, May 07 2021
  • Mathematica
    a[n_] := Binomial[n, Times @@ FactorInteger[n][[All, 1]]];
    Table[a[n], {n, 1, 60}] (* Jean-François Alcover, May 11 2023 *)

Formula

a(n) = binomial(n, A007947(n)).