OFFSET
1,1
COMMENTS
Equals {12, 14, 22, 27, 57} UNION {pq | p, q prime, q = 3p+2 or (p >= 5 and q = 4p+1)}.
LINKS
Eric M. Schmidt, Table of n, a(n) for n = 1..1000
Rosemary Sullivan and Neil Watling, Independent Divisibility Pairs on the Set of Integers from 1 to N, INTEGERS, Electronic J. of Combinatorial Number Theory, Vol. 13, Paper A65, 2013.
PROG
(Sage) [p * (3*p+2) for p in prime_range(10000) if (3*p+2).is_prime()] + [p * (4*p+1) for p in prime_range(5, 10000) if (4*p+1).is_prime()] + [12, 14, 22, 27, 57]
CROSSREFS
KEYWORD
nonn
AUTHOR
Eric M. Schmidt, Oct 04 2013
STATUS
approved