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”).
%I #3 Dec 05 2013 19:55:17
%S 0,1,3,6,10,15,21,28,36,45,55,66,78,91,190,496,595,990,5995
%N Triangular numbers with internal digits 9.
%C For proof of finiteness see A069693.
%t Do[ If[ Union[ Drop[ RotateLeft[ IntegerDigits[n(n + 1)/2]], -2]] == {9}, Print[n(n + 1)/2]], {n, 14, 10^6}]
%Y Cf. A069675 to A069684, A069693 to A069700.
%K fini,full,nonn,base
%O 1,3
%A _Amarnath Murthy_, Apr 06 2002