login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A306468
Number of ways to write n as floor(i^2/3) + floor(j^2/3) + floor(k^2/3) with 1 <= i <= j <= k.
1
1, 1, 1, 2, 1, 2, 2, 2, 2, 3, 2, 3, 2, 3, 3, 2, 4, 3, 4, 2, 3, 4, 4, 2, 5, 4, 2, 5, 3, 6, 2, 3, 5, 6, 3, 4, 5, 5, 4, 3, 6, 4, 5, 5, 5, 5, 5, 2, 7, 6, 5, 5, 3, 6, 6, 4, 6, 8, 3, 6, 5, 7, 5, 3, 8, 6, 6, 5, 6, 8, 5, 4, 8, 6, 4, 7, 7, 6, 7, 2, 8, 10, 6, 6, 5, 7, 6
OFFSET
0,4
COMMENTS
Farhi proved that a(n) > 0 for any n >= 0.
i^2/3 means (i^2)/3, of course, not i^(2/3). - N. J. A. Sloane, Feb 18 2019
EXAMPLE
For n = 42:
- let f(k) = floor(k^2/3),
- 42 can be written in 5 ways as f(i) + f(j) + f(k) with 1 <= i <= j <= k:
f(1) + f(8) + f(8) = 0 + 21 + 21
f(2) + f(2) + f(11) = 1 + 1 + 40
f(2) + f(5) + f(10) = 1 + 8 + 33
f(3) + f(6) + f(9) = 3 + 12 + 27
f(4) + f(7) + f(8) = 5 + 16 + 21,
- hence a(42) = 5.
PROG
(PARI) See Links section.
CROSSREFS
Cf. A000212.
Sequence in context: A353865 A237110 A078704 * A032358 A011960 A187035
KEYWORD
nonn
AUTHOR
Rémy Sigrist, Feb 17 2019
STATUS
approved