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!)
A079783 Sum of n-th row of triangle in A079784. 4
2, 9, 30, 38, 285, 339, 2912, 6684, 22635, 25145, 304854, 332562, 4684589, 5044935, 5405280, 11531384, 208287927, 220540149, 4423058450, 4655850990, 4888643529, 5121436067, 123147263964, 128501492820, 669278609675, 696049754049, 2168462696022, 2248776129194 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
A079783(n) = n*[A079782(n)-(n-1)/2]. - R. J. Mathar, Nov 12 2006
EXAMPLE
The fifth row 55,56,57,58,59 is divisible by 5,4,3,2 and 1 respectively.
PROG
(PARI) okrow(m, n) = {v = vector(n, i, i+m-1); for (i=1, n, if (v[i] % (n-i+1), return (0)); ); return (1); }
a(n) = {m = n+1; while (! okrow(m, n), m++); sum(k=1, n, m+k-1); } \\ Michel Marcus, Feb 28 2014
CROSSREFS
Sequence in context: A150904 A122675 A042357 * A182975 A228932 A196421
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Feb 03 2003
EXTENSIONS
More terms from Michel Marcus, Feb 28 2014
STATUS
approved

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 March 29 06:57 EDT 2024. Contains 371265 sequences. (Running on oeis4.)