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!)
A130511 ABC conjecture: values of a in the list of "abc-hits". 5
1, 5, 1, 1, 1, 32, 4, 3, 1, 1, 2, 7, 13, 81, 1, 100, 32, 5, 169, 1, 27, 1, 49, 81, 1, 1, 25, 104, 200, 1, 343, 1, 5, 1, 8, 81, 243, 640, 256, 81, 23, 25, 243, 9, 11, 139, 512, 10, 81, 1, 125, 1, 25, 192, 1024, 99, 625, 1, 875, 53, 128, 11, 1024, 25, 459, 128, 648, 1, 1, 512, 7, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
PROG
(Python)
from itertools import count, islice
from math import prod, gcd
from sympy import primefactors
def A130511_gen(): # generator of terms
for c in count(1):
pc = set(primefactors(c))
for a in range(1, (c>>1)+1):
b = c-a
if gcd(a, b)==1 and c>prod(set(primefactors(a))|set(primefactors(b))|pc):
yield a
A130511_list = list(islice(A130511_gen(), 30)) # Chai Wah Wu, Oct 19 2023
CROSSREFS
Cf. A130510.
Sequence in context: A256690 A181985 A304320 * A320410 A011396 A256503
KEYWORD
nonn
AUTHOR
T. D. Noe, Jun 01 2007
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 22 18:34 EDT 2024. Contains 375369 sequences. (Running on oeis4.)