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

A229235
Smallest triangular numbers whose decimal expansion begins (nontrivially) with n-th triangular number.
1
15, 36, 66, 105, 153, 2145, 2850, 3655, 4560, 5565, 666, 7875, 9180, 10585, 12090, 13695, 153181, 1711, 190653, 210276, 231540, 253116, 276396, 3003, 325221, 351541, 378885, 406351, 435711, 4656, 496506, 528906, 561270, 595686, 6303025, 666435, 703891
OFFSET
1,1
LINKS
EXAMPLE
a(4)=105 because 105 is triangular number that begins with 4th triangular number i.e. 10.
MATHEMATICA
TriangularQ[n_Integer?Positive] := IntegerQ[Sqrt[8*n + 1]]; q = {}; Do[x = n*(n + 1)/2; Do[a = IntegerLength[m]; c = x*10^a + m; If[TriangularQ[c], AppendTo[q, c]; Break[]], {m, 1, 10000}], {n, 1, 100}]; q
CROSSREFS
Cf. A000217.
Sequence in context: A033709 A067707 A166146 * A346881 A293156 A329909
KEYWORD
base,nonn
AUTHOR
Shyam Sunder Gupta, Sep 17 2013
STATUS
approved