cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A216601 Number of ways to write n as a product with all factors <= n/5.

Original entry on oeis.org

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
Offset: 1

Views

Author

Reinhard Zumkeller, Oct 01 2012

Keywords

Comments

a(n) = A066032(n,floor(n/5)) for n > 4.

Examples

			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.
		

Crossrefs

Programs

  • Haskell
    a216601 n | n <= 4    = 0
              | otherwise = a066032_tabl !! (n-1) !! (n `div` 5 - 1)