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!)
A216601 Number of ways to write n as a product with all factors <= n/5. 7
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 1, 0, 1, 0, 0, 2, 0, 3, 0, 0, 1, 4, 0, 0, 0, 3, 0, 2, 0, 0, 2, 0, 0, 7, 1, 2, 0, 0, 0, 4, 1, 3, 0, 0, 0, 6, 0, 0, 2, 7, 1, 2, 0, 0, 0, 3, 0, 11, 0, 0, 2, 0, 1, 2, 0, 8, 3, 0, 0, 6, 1, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,24
COMMENTS
a(n) = A066032(n,floor(n/5)) for n > 4.
LINKS
EXAMPLE
a(50) = #{10*2, 5*5*2} = 2;
a(51) = #{} = 0;
a(52) = #{} = 0;
a(53) = #{} = 0;
a(54) = #{9*6, 9*3*2, 6*3*3, 3*3*3*2} = 4;
a(55) = #{11*5} = 1.
PROG
(Haskell)
a216601 n | n <= 4 = 0
| otherwise = a066032_tabl !! (n-1) !! (n `div` 5 - 1)
CROSSREFS
Sequence in context: A128617 A116488 A356242 * A283000 A145765 A157424
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 May 1 23:54 EDT 2024. Contains 372178 sequences. (Running on oeis4.)