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!)
A110346 Largest multiple of n in n + (n-1) +(n-2) + ... (n-k). 1
1, 2, 6, 4, 15, 18, 28, 8, 45, 40, 66, 72, 91, 84, 120, 16, 153, 126, 190, 200, 231, 198, 276, 264, 325, 260, 378, 196, 435, 450, 496, 32, 561, 442, 630, 288, 703, 570, 780, 520, 861, 882, 946, 924, 1035, 828, 1128, 1056, 1225, 950, 1326, 1300, 1431, 1134, 1540 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(2n-1) = n(2n-1).
a(2^n) = 2^n. - Ivan Neretin, May 17 2015
a(n) = n*k + n - (k^2+k)/2 where k is the greatest integer <= n with k*(k+1) divisible by 2*n. k = n iff n is odd. - Robert Israel, May 17 2015
MAPLE
F:= proc(n) local k, R;
k:= max(map(t -> `if`(t[1]<= n, t[1], NULL), Roots(k*(k+1)) mod (2*n)));
n*k + n - (k^2+k)/2;
end proc:
map(F, [$1..100]); # Robert Israel, May 17 2015
MATHEMATICA
Table[Max[Select[n (n + 1)/2 - # (# - 1)/2 & /@ Range[n], Divisible[#, n] &]], {n, 55}] (* Ivan Neretin, May 17 2015 *)
PROG
;; PLT DrScheme (Zucker)
(define (A110346 n)
(apply max (filter (lambda (x) (= 0 (remainder x n)))
(build-list n (lambda (k) (apply + (build-list (add1 k) (lambda (j) (- n j)))))))))
;; yes, it would be faster to use n(n+1)/2 - k(k+1)/2 instead of summing.
CROSSREFS
Sequence in context: A069914 A200746 A130190 * A095754 A226718 A181159
KEYWORD
easy,nonn
AUTHOR
Amarnath Murthy, Jul 20 2005
EXTENSIONS
More terms from Joshua Zucker, May 09 2006
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 August 17 02:18 EDT 2024. Contains 375198 sequences. (Running on oeis4.)