Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)
Search: a079781 -id:a079781
Displaying 1-3 of 3 results found. page 1
     Sort: relevance | references | number | modified | created      Format: long | short | data
A079782 Final term of n-th row of triangle in A079784. +10
4
2, 5, 11, 11, 59, 59, 419, 839, 2519, 2519, 27719, 27719, 360359, 360359, 360359, 720719, 12252239, 12252239, 232792559, 232792559, 232792559, 232792559, 5354228879, 5354228879, 26771144399, 26771144399, 80313433199, 80313433199, 2329089562799, 2329089562799 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
For n >= 4, a(n) = A003418(n) - 1. Also for n < 4, a(n) is the smallest number congruent to (i-1) (mod i) for any i in {1..n}. That results directly from the definition of A003418 (if p == 0 (mod q), p-1 == (q-1) (mod q)) and from the first comment. - Philippe LALLOUET (philip.lallouet(AT)wanadoo.fr), Aug 29 2007
LINKS
EXAMPLE
a(4) = lcm(1, 2, 3, 4) - 1 = 12 - 1 = 11. a(5) = lcm(1, 2, 3, 4, 5) - 1 = 60 - 1 = 59. - Michael Somos, Feb 28 2014
MAPLE
A079782 := proc(n) local a, found, r ; a := n+1 ; while true do found := true ; for r from 1 to n do if (a+r-1) mod (n-r+1) <> 0 then found := false ; break ; fi ; od ; if found then RETURN(a+n-1) ; fi ; a :=a+1 ; od ; end: for n from 1 to 20 do print(A079782(n)) ; od ; # R. J. Mathar, Nov 12 2006
MATHEMATICA
a[n_] := Which[n == 1, 2, n == 2, 5, n == 3, 11, True, LCM@@ Range[n] - 1];
Table[a[n], {n, 1, 30}] (* Jean-François Alcover, Jun 16 2024 *)
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++); m+n-1; } \\ Michel Marcus, Feb 28 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Feb 03 2003
EXTENSIONS
More terms from R. J. Mathar, Nov 12 2006
More terms from Michel Marcus, Feb 28 2014
STATUS
approved
A079783 Sum of n-th row of triangle in A079784. +10
3
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
a(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.
MATHEMATICA
a[n_] := n*(Which[n == 1, 2, n == 2, 5, n == 3, 11, True, LCM @@ Range[n] - 1] - (n-1)/2);
Table[a[n], {n, 1, 30}] (* Jean-François Alcover, Jun 17 2024 *)
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
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Feb 03 2003
EXTENSIONS
More terms from Michel Marcus, Feb 28 2014
STATUS
approved
A079784 Triangle read by rows in which the n-th row contains the smallest set of n consecutive numbers such that the r-th number in the n-th row is divisible by n-r+1. The first term of the n-th row must exceed n. +10
3
2, 4, 5, 9, 10, 11, 8, 9, 10, 11, 55, 56, 57, 58, 59, 54, 55, 56, 57, 58, 59, 413, 414, 415, 416, 417, 418, 419, 832, 833, 834, 835, 836, 837, 838, 839, 2511, 2512, 2513, 2514, 2515, 2516, 2517, 2518, 2519, 2510, 2511, 2512, 2513, 2514, 2515, 2516, 2517, 2518, 2519 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
Triangle starts:
2;
4, 5;
9, 10, 11;
8, 9, 10, 11;
55, 56, 57, 58, 59;
54, 55, 56, 57, 58, 59;
413, 414, 415, 416, 417, 418, 419;
...
The fifth row 55,56,57,58,59 is divisible by 5,4,3,2 and 1 respectively.
MATHEMATICA
T[n_, k_] := T[n, k] = Which[n == k == 1, 2, n == k == 2, 5, n == k == 3, 11, n == k, LCM @@ Range[n] - 1, True, T[n, k + 1] - 1];
Table[T[n, k], {n, 1, 10}, {k, 1, n}] // Flatten (* Jean-François Alcover, Mar 28 2024, after comments in A079782 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Amarnath Murthy, Feb 03 2003
EXTENSIONS
Corrected and extended by Antonio G. Astudillo (afg_astudillo(AT)lycos.com), Apr 29 2003
STATUS
approved
page 1

Search completed in 0.006 seconds

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 August 18 20:50 EDT 2024. Contains 375284 sequences. (Running on oeis4.)