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!)
A238337 Number of distinct squarefree numbers in row n of Pascal's triangle. 6
1, 1, 2, 2, 2, 3, 3, 4, 2, 1, 3, 6, 2, 5, 6, 7, 1, 3, 1, 4, 4, 5, 6, 12, 2, 2, 4, 1, 2, 6, 3, 6, 1, 2, 4, 4, 1, 4, 7, 6, 2, 6, 7, 13, 8, 4, 10, 21, 1, 1, 1, 2, 3, 9, 2, 3, 1, 3, 5, 11, 4, 13, 20, 4, 1, 2, 3, 4, 4, 8, 6, 9, 1, 4, 9, 2, 3, 7, 9, 17, 1, 1, 2, 3, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) + A064460(n) = A008619(n). - R. J. Mathar, Jan 18 2018
EXAMPLE
a(10)=3 because in row 10 of A007318 we observe the three squarefree numbers 1, 10 and 210.
MAPLE
A238337 := proc(n)
local sqf ;
sqf := {} ;
for k from 0 to n do
b := binomial(n, k) ;
if b=1 or numtheory[issqrfree](b) then
sqf := sqf union { b} ;
end if;
end do:
nops(sqf) ;
end proc:
seq(A238337(n), n=0..10) ; # R. J. Mathar, Mar 06 2014
MATHEMATICA
Table[Length[Select[Binomial[n, Range[0, n/2]], SquareFreeQ[#] &]], {n, 0, 100}]
CROSSREFS
Cf. A048276 (number of squarefree numbers in the entire row), A238336.
Sequence in context: A139801 A132328 A064822 * A104484 A038809 A337496
KEYWORD
nonn
AUTHOR
T. D. Noe, Mar 05 2014
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 April 18 08:08 EDT 2024. Contains 371769 sequences. (Running on oeis4.)