OFFSET
1,4
COMMENTS
In racetrack language, this is the number of trifectas in geometric progression in an n-horse race.
It appears that geometric progression like (k,0,0) are excluded. - Stefan Steinerberger, Nov 24 2007
LINKS
Gerry Myerson, Trifectas in Geometric Progression, Australian Mathematical Society Gazette, Volume 35 Number 3 July 2008 pp. 189-194.
MATHEMATICA
a = {}; For[n = 1, n < 80, n++, c = 0; For[j = 1, j < n + 1, j++, For[h = 1, h < n + 1, h++, If[Not[h == j], If[IntegerQ[j*(h/j)^2], If[j*(h/j)^2 < n + 1, c++ ]]]]]; AppendTo[a, c]]; a (* Stefan Steinerberger, Nov 24 2007 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Gerry Myerson, Nov 21 2007
EXTENSIONS
More terms from Stefan Steinerberger, Nov 24 2007
STATUS
approved