login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A073354
Binomial coefficient ( n, squarefree kernel(n) ).
2
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,4
COMMENTS
a(n)=1 iff n is squarefree.
LINKS
FORMULA
a(n) = binomial(n, A007947(n)).
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 *)
CROSSREFS
KEYWORD
nonn,look
AUTHOR
Reinhard Zumkeller, Jul 29 2002
STATUS
approved