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!)
A103444 Triangle read by rows: T(n,k) is number of unitary divisors of C(n,k), 0<=k<=n. 1
1, 1, 1, 1, 2, 1, 1, 2, 2, 1, 1, 2, 4, 2, 1, 1, 2, 4, 4, 2, 1, 1, 4, 4, 4, 4, 4, 1, 1, 2, 4, 4, 4, 4, 2, 1, 1, 2, 4, 4, 8, 4, 4, 2, 1, 1, 2, 4, 8, 8, 8, 8, 4, 2, 1, 1, 4, 4, 8, 16, 8, 16, 8, 4, 4, 1, 1, 2, 4, 8, 16, 16, 16, 16, 8, 4, 2, 1, 1, 4, 8, 8, 8, 8, 16, 8, 8, 8, 8, 4, 1, 1, 2, 8, 8, 8, 8, 16, 16, 8, 8 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Row n contains n+1 terms. Row sums yield A103445.
LINKS
EXAMPLE
T(6,3)=4 because the divisors of C(6,3)=20 are 1,2,4,5,10,20 of which 1,4,5,20 are unitary (i.e. d|20 such that gcd(d,20/d)=1).
Triangle begins:
1;
1,1;
1,2,1;
1,2,2,1;
1,2,4,2,1;
1,2,4,4,2,1;
MAPLE
with(numtheory):unitdiv:=proc(n) local A, k: A:={}: for k from 1 to tau(n) do if gcd(divisors(n)[k], n/divisors(n)[k])=1 then A:=A union {divisors(n)[k]} else A:=A fi od end: T:=proc(n, k) if k<=n then nops(unitdiv(binomial(n, k))) else 0 fi end: for n from 0 to 13 do seq(T(n, k), k=0..n) od; # yields sequence in triangular form
CROSSREFS
Cf. A103445.
Sequence in context: A144464 A138015 A327742 * A099172 A214246 A214257
KEYWORD
nonn,tabl
AUTHOR
Emeric Deutsch, Feb 06 2005
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 24 02:46 EDT 2024. Contains 371917 sequences. (Running on oeis4.)