OFFSET
1,2
REFERENCES
R. K. Guy, Unsolved Problems in Number Theory, D3.
LINKS
S. P. Mohanty, Which triangular numbers are products of three consecutive integers?, Acta Mathematica Hungarica 1991, Volume 58, Issue 1-2, pp 31-36.
Eric Weisstein's World of Mathematics, Triangular Number.
FORMULA
MAPLE
count:= 0:
for a from 0 to 637 do
p:= a*(a+1)*(a+2);
if issqr(1+8*p) then
count:= count+1;
A[count]:= p;
fi
od:
seq(A[i], i=1..count); # Robert Israel, Jan 14 2015
MATHEMATICA
Select[Times @@@ Partition[Range[0, 700], 3, 1], OddQ[ Sqrt[ 8 # + 1]] &] (* Harvey P. Dale, Nov 04 2017 *)
CROSSREFS
KEYWORD
nonn,fini,full
AUTHOR
STATUS
approved