login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A050449 A316623 A108131 * A358461 A197420 A128423
KEYWORD
nonn,look
AUTHOR
Reinhard Zumkeller, Jul 29 2002
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 11 11:07 EDT 2024. Contains 372409 sequences. (Running on oeis4.)