OFFSET
1,1
COMMENTS
LINKS
K. D. Bajpai, Table of n, a(n) for n = 1..13000
EXAMPLE
a(1) = 404550 is in the sequence because {404550 and 405450} are a pair of consecutive triangular numbers having exactly the same digits.
a(2) = 2653056 is in the sequence because {2653056 and 2655360} are two consecutive triangular numbers having exactly the same digits.
MATHEMATICA
PROG
(PARI) lista(nn) = {for (n=1, nn, dt = vecsort(digits(t=n*(n+1)/2)); dnt = vecsort(digits((n+1)*(n+2)/2)); if (dt == dnt, print1(t, ", ")); ); } \\ Michel Marcus, Sep 13 2014
CROSSREFS
KEYWORD
nonn,base
AUTHOR
K. D. Bajpai, Sep 11 2014
STATUS
approved