login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A081540 Sum of terms in row n of A081539. 4

%I #9 Aug 07 2015 03:11:18

%S 0,3,48,615,7404,86415,987648,11111103,123456780,12469134879,

%T 1259259166920,127160484583143,12839505247415568,1296296203651668195,

%U 130864188256177941024,13209875614718906234055,1333333240382001836547288,134567891929211304968880723,13580245982022242628303234360

%N Sum of terms in row n of A081539.

%p conca := proc(S) local resul,d,i ; resul := 0 ; for i from 1 to nops(S) do d := ilog10(op(i,S))+1 ; resul := resul*10^d+op(i,S) ; od ; resul ; end: A081539 := proc(row) local a,p,i; if row =1 then RETURN([0]) ; fi ; a := [] ; p := [seq(i,i=1..row)] ; for i from 1 to row do a := [op(a),conca(subsop(i=NULL,p))] ; od: sort(a)[1..row] ; end: A081540 := proc(n) local r ; r := A081539(n) ; add(r[i],i=1..n) ; end: seq(A081540(n),n=1..20) ; # _R. J. Mathar_, Jul 15 2007

%Y Cf. A081539.

%K nonn,base

%O 1,2

%A _Amarnath Murthy_, Mar 29 2003

%E Corrected and extended by _R. J. Mathar_, Jul 15 2007

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)