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”).

A216600
Number of ways to write n as a product with all factors <= n/4.
7
0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 1, 0, 2, 0, 0, 0, 4, 1, 0, 1, 2, 0, 2, 0, 5, 0, 0, 1, 6, 0, 0, 0, 5, 0, 2, 0, 2, 2, 0, 0, 9, 1, 2, 0, 2, 0, 4, 1, 5, 0, 0, 0, 8, 0, 0, 2, 9, 1, 2, 0, 2, 0, 3, 0, 13, 0, 0, 2, 2, 1, 2, 0, 10, 3, 0, 0, 8, 1, 0
OFFSET
1,16
COMMENTS
a(n) = A066032(n,floor(n/4)) for n > 3.
LINKS
EXAMPLE
a(40) = #{10*4, 10*2*2, 8*5, 5*4*2, 5*2*2*2} = 5;
a(41) = #{} = 0;
a(42) = #{7*6, 7*3*2} = 2;
a(43) = #{} = 0;
a(44) = #{11*4, 11*2*2} = 2;
a(45) = #{9*5, 5*3*3} = 2.
PROG
(Haskell)
a216600 n | n <= 3 = 0
| otherwise = a066032_tabl !! (n-1) !! (n `div` 4 - 1)
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Oct 01 2012
STATUS
approved