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!)
A136529 a(n) = the smallest possible number of positive divisors of the sum of any two distinct positive divisors of n. 2
2, 3, 2, 4, 2, 4, 2, 3, 2, 6, 2, 4, 2, 3, 2, 6, 2, 6, 2, 3, 2, 8, 2, 4, 2, 3, 2, 8, 2, 6, 2, 3, 2, 4, 2, 4, 2, 3, 2, 8, 2, 6, 2, 3, 2, 10, 2, 4, 2, 3, 2, 8, 2, 4, 2, 3, 2, 12, 2, 4, 2, 3, 2, 4, 2, 6, 2, 3, 2, 12, 2, 4, 2, 3, 2, 4, 2, 10, 2, 3, 2, 12, 2, 4, 2, 3, 2, 12, 2, 4, 2, 3, 2, 4, 2, 6, 2, 3, 2, 8, 2, 8 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
There are d(n)*(d(n)-1)/2 sums of pairs of distinct positive divisors of n, where d(n) = number of positive divisors of n.
LINKS
EXAMPLE
The positive divisors of 6 are 1,2,3,6. Letting d(m) = the number of positive divisors of m: d(1+2)=2; d(1+3)=3; d(1+6)=2; d(2+3)=2; d(2+6)=4; d(3+6)=3. The least of these values is 2, so a(6) = 2.
PROG
(PARI) { a(n) = d=divisors(n); m=numdiv(n+1); for(i=1, #d, for(j=i+1, #d, m=min(m, numdiv(d[i]+d[j])); )); m } \\ Max Alekseyev, Apr 27 2009
CROSSREFS
Cf. A136528.
Sequence in context: A286602 A286600 A339013 * A113982 A256542 A101743
KEYWORD
nonn
AUTHOR
Leroy Quet, Jan 03 2008
EXTENSIONS
Extended by Max Alekseyev, Apr 27 2009
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 April 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)