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

A226359
Number of ordered triples (i,j,k) with |i|, |j|, |k|, |i*j*k| <= n.
11
1, 27, 93, 183, 321, 459, 669, 855, 1121, 1379, 1685, 1967, 2393, 2723, 3125, 3551, 4049, 4475, 5045, 5519, 6137, 6707, 7301, 7871, 8681, 9323, 10013, 10735, 11545, 12259, 13189, 13951, 14881, 15739, 16621, 17527, 18673, 19579, 20557, 21559, 22753, 23755
OFFSET
0,2
LINKS
Robert Price and Charles R Greathouse IV, Table of n, a(n) for n = 0..10000 (terms through 100 from Robert Price)
MATHEMATICA
f[n_]:=Length[Complement[Union[Flatten[Table[If[Abs[i*j*k] <= n, {i, j, k}], {i, -n, n}, {j, -n, n}, {k, -n, n}], 2]], {Null}]]; Table[f[n], {n, 0, 100}]
PROG
(PARI) a(n)=12*n^2+6*n+1+8*sum(i=1, n, n\i*numdiv(i)) \\ Charles R Greathouse IV, Jun 04 2013
CROSSREFS
Sequence in context: A228600 A286192 A101100 * A078183 A072252 A154041
KEYWORD
nonn
AUTHOR
Robert Price, Jun 04 2013
STATUS
approved