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!)
A225627 a(n) = lcm(A000793(n),p1,p2,...,pk) for such a partition {p1+p2+...+pk} of n that maximizes this value among all partitions of n. 4

%I #13 Mar 04 2018 17:47:40

%S 1,1,2,6,12,30,30,84,120,180,210,420,660,780,1260,4620,5460,5460,5460,

%T 9240,13860,13860,16380,32760,120120,180180,180180,235620,180180,

%U 471240,1021020,1021020,1141140,1141140,2282280,2282280,4476780,4476780,6846840,6846840

%N a(n) = lcm(A000793(n),p1,p2,...,pk) for such a partition {p1+p2+...+pk} of n that maximizes this value among all partitions of n.

%C Row 2 of A225630.

%C This could be called a "twice-iterated Landau's function."

%H <a href="/index/Lc#lcm">Index entries for sequences related to lcm's</a>

%F a(n) = A225636(n)*A000793(n).

%o (Scheme):

%o (define (A225627 n) (let ((maxlcm (list 0))) (fold_over_partitions_of n (A000793 n) lcm (lambda (p) (set-car! maxlcm (max (car maxlcm) p)))) (car maxlcm)))

%o (define (fold_over_partitions_of m initval addpartfun colfun) (let recurse ((m m) (b m) (n 0) (partition initval)) (cond ((zero? m) (colfun partition)) (else (let loop ((i 1)) (recurse (- m i) i (+ 1 n) (addpartfun i partition)) (if (< i (min b m)) (loop (+ 1 i))))))))

%Y Cf. A000793, A225630, A225628, A225629, A225636.

%K nonn

%O 0,3

%A _Antti Karttunen_, May 13 2013

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 18 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)