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!)
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 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A232630 A331569 A341716 * A356679 A356681 A093684
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Oct 01 2012
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 23 09:45 EDT 2024. Contains 371905 sequences. (Running on oeis4.)