OFFSET
1,2
COMMENTS
There are only 2 primes i.e. 13 and 136101521 known in the sequence for first 1000 terms of the sequence.
REFERENCES
Shyam Sunder Gupta, Smarandache Sequence of Triangular Numbers, Smarandache Notions Journal, (to appear in Vol. 14, 2003).
EXAMPLE
a(3)=136 because 1, 3, 6 are first 3 triangular numbers.
MAPLE
a:= proc(n) a(n):= `if`(n=1, 1, parse(cat(a(n-1), n*(n+1)/2))) end:
seq(a(n), n=1..20); # Alois P. Heinz, Jan 13 2021
MATHEMATICA
Table[FromDigits[Flatten[IntegerDigits[Table[n*(n+1)/2, {n, 1, m}]]]], {m, 1, 20}]
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Shyam Sunder Gupta, Jan 10 2003
STATUS
approved