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.

A117220 Number of partitions of 3-smooth numbers into parts not greater than 3.

Original entry on oeis.org

1, 2, 3, 4, 7, 10, 12, 19, 30, 37, 61, 75, 102, 127, 217, 271, 374, 469, 588, 817, 1027, 1430, 1801, 2269, 3169, 3997, 5043, 5590, 7057, 8911, 12481, 15769, 19927, 22102, 27937, 35317, 44652, 49537, 62641, 79219, 87894, 111169, 140617, 177877, 197377
Offset: 1

Views

Author

Reinhard Zumkeller, Mar 04 2006

Keywords

Examples

			a(9) = #{3+3+3, 3+3+2+1, 3+3+1+1+1, 3+2+2+2, 3+2+2+1+1, 3+2+1*[4], 3+1*[6],2+2+2+2+1, 2+2+2+1+1+1, 2+2+1*[4], 2+1*[7], 1*[9]} = 12.
		

Crossrefs

Programs

  • Mathematica
    s = {}; m = 13; Do[n = 3^k; While[n <= 3^m, AppendTo[s, n]; n*=2], {k, 0, m}]; f[n_] := Round[(n + 3)^2/12]; f /@ Union[s] (* Amiram Eldar, Jan 30 2020 *)

Formula

a(n) = A001399(A003586(n)).