login
a(n) = triangular number pertaining to the number f(n) obtained by concatenating first n natural numbers.
1

%I #8 Dec 05 2013 19:55:54

%S 1,78,7626,761995,76205685,7620753696,762078456028,76207888812681,

%T 7620789436823655,76207893880582233505,762078938758291471246566,

%U 7620789387578285082874368828,76207893875782400211463469221291

%N a(n) = triangular number pertaining to the number f(n) obtained by concatenating first n natural numbers.

%e a(4) =761995= 1234*1235/2

%t tno[lst_]:=Module[{n=FromDigits[lst]},(n(n+1))/2]; tno/@Table[Flatten[ IntegerDigits/@Range[n]],{n,20}] (* _Harvey P. Dale_, Aug 16 2011 *)

%Y Cf. A077692, A077693.

%K base,nonn

%O 1,2

%A _Amarnath Murthy_, Nov 18 2002

%E More terms from _Sascha Kurz_, Jan 07 2003