login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A120852 Triangle read by rows, where t(n,1) = 1, t(n,m) = t(n,m-1) + (largest noncomposite {1 or prime} in row {n-1}). 2
1, 1, 2, 1, 3, 5, 1, 6, 11, 16, 1, 12, 23, 34, 45, 1, 24, 47, 70, 93, 116, 1, 48, 95, 142, 189, 236, 283, 1, 284, 567, 850, 1133, 1416, 1699, 1982, 1, 1700, 3399, 5098, 6797, 8496, 10195, 11894, 13593, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 8, 15, 22, 29, 36, 43, 50, 57, 64, 71 (list; table; graph; refs; listen; history; internal format)
OFFSET

1,3

EXAMPLE

11 is the largest prime in row 4 of the triangle. So t(5,m) = 1 + 11*(m-1), for 1 <=m <= 5.

PROG

(PARI) {z=11; w=[]; for(n=1, z, k=0; for(j=1, #w, if(k<w[j]&&(w[j]==1||isprime(w[j])), k=w[j])); print1(a=1, ", "); w=[a]; for(m=2, n, a=k+a; print1(a, ", "); w=concat(w, a)))} - (Klaus Brockhaus, Aug 17 2006)

CROSSREFS

Cf. A120853.

Row sums are in A160963. [From Klaus Brockhaus (klaus-brockhaus(AT)t-online.de), May 31 2009]

Sequence in context: A109533 A062705 A059234 * A058168 A058169 A178074

Adjacent sequences:  A120849 A120850 A120851 * A120853 A120854 A120855

KEYWORD

nonn,tabl

AUTHOR

Leroy Quet Jul 08 2006

EXTENSIONS

More terms from Klaus Brockhaus (klaus-brockhaus(AT)t-online.de), Aug 17 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 11:25 EST 2012. Contains 205777 sequences.