A048241 Number of colors that can be mixed with n >= 0 units of yellow, blue, red.
1, 4, 7, 14, 23, 41, 56, 89, 119, 164, 206, 281, 335, 437, 518, 626, 734, 902, 1019, 1226, 1382, 1592, 1787, 2084, 2288, 2618, 2888, 3239, 3545, 4007, 4307, 4832, 5240, 5750, 6206, 6818, 7268, 8006, 8573, 9281, 9881, 10781, 11375, 12362
Offset: 0
Examples
a(2)=7: white, primary and secondary colors (null, Y^1, B^1, R^1, Y^1*B^1, Y^1*R^1, B^1*R^1).
Links
- T. D. Noe, Table of n, a(n) for n = 0..1000
Programs
-
Mathematica
Accumulate[ Table[ Sum[ MoebiusMu[n/d]*(d+1)*(d+2)/2, {d, Divisors[n]}], {n, 0, 43}]] + 1 (* Jean-François Alcover, Oct 16 2013, after T. D. Noe *)