OFFSET
1,2
COMMENTS
Numbers n such that n + (0, 2, 6) is a prime power triple.
Prime power triples with pattern n + (0, 2, 6), a generalization of the prime triples with pattern n + (0, 2, 6). The prime triples with pattern n + (0, 2, 6) are a subsequence.
n + (0, 2, 6), being an admissible pattern for prime triples, since (0, 2, 6) = (0, 0, 0) (mod 2) = (0, 2, 0) (mod 3), has high density.
n + (0, 4, 6), being an admissible pattern for prime triples, since (0, 4, 6) = (0, 0, 0) (mod 2) = (0, 1, 0) (mod 3), has high density.
n + (0, 2, 4), being a non-admissible pattern for prime triples, since (0, 2, 4) = (0, 0, 0) (mod 2) = (0, 2, 1) (mod 3), has low density.
LINKS
Daniel Forgues, Table of n, a(n) for n=1..279
MATHEMATICA
Join[{1}, Select[Range[4600], AllTrue[#+{0, 2, 6}, PrimePowerQ]&]] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, Aug 19 2020 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Daniel Forgues, Aug 18 2009
EXTENSIONS
Cross-reference corrected by Daniel Forgues, Oct 07 2009
STATUS
approved