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”).

A226600
Number of ordered triples (i,j,k) with i*j*k <= n and i,j,k >= 0.
3
1, 8, 23, 44, 74, 107, 152, 197, 255, 315, 384, 453, 543, 624, 717, 816, 927, 1032, 1158, 1275, 1413, 1548, 1689, 1830, 2004, 2160, 2325, 2497, 2683, 2860, 3067, 3256, 3469, 3676, 3889, 4108, 4360, 4585, 4822, 5065, 5335, 5584, 5863, 6124, 6406, 6694, 6979
OFFSET
0,2
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..5000 (terms n = 0..100 from Robert Price)
FORMULA
a(n) = A003215(n) + A061201(n). - Alois P. Heinz, Jun 13 2013
MATHEMATICA
f[n_] := Length[Complement[Union[Flatten[Table[If[i*j*k <= n, {i, j, k}], {i, 0, n}, {j, 0, n}, {k, 0, n}], 2]], {Null}]]; Table[f[n], {n, 0, 100}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Price, Jun 13 2013
STATUS
approved