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!)
A172245 a(n) = number of ways of writing n = i+j such that i<=j, gcd(i,j,n)=1, and the values of N(i,j,n) are distinct, where N(i,j,n) = product of distinct prime divisors of i*j*n. 4
0, 1, 1, 1, 2, 1, 2, 2, 3, 2, 4, 2, 5, 3, 3, 4, 7, 3, 7, 4, 5, 5, 8, 4, 8, 6, 9, 6, 13, 4, 12, 8, 10, 8, 10, 6, 16, 9, 11, 7, 18, 6, 19, 10, 12, 11, 19, 8, 18, 10, 16, 12, 23, 9, 17, 12, 17, 13, 27, 8, 26, 15, 17, 16, 21, 10, 30, 16, 22, 12, 29, 12, 30, 18, 20, 18, 26, 12, 34, 16, 27, 20, 38 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
EXAMPLE
a(5)=2 because we have two partitions 5=1+4 and 5=2+3 with different values of N(i,j,n), 1*2*5=10 and 2*3*5=30.
PROG
(PARI) a(n) = {l = List(); for(i = 1, n\2, if(gcd([i, (n-i), n]) == 1, listput(l, factorback(factor(i*(n-i)*n)[, 1])))); #Set(l)} \\ David A. Corneth, Aug 25 2020
CROSSREFS
Number of partitions n = sum a + b such that a<=b, gcd(a,b,n)=1, see A023022
Cf. A172246.
Numbers n for which exist cases with that same value of function N(a,b,n), see A172247
Numbers n for which all partitions have different value of function N(a,b,n), see A172248.
Sequence in context: A260412 A360566 A283451 * A351005 A238781 A319439
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Jan 29 2010
EXTENSIONS
Edited by N. J. A. Sloane, Aug 25 2020
a(1) = 0 prepended by David A. Corneth, Aug 25 2020
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 27 15:06 EDT 2024. Contains 372019 sequences. (Running on oeis4.)