login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

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
OFFSET
1,2
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