cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A062729 n not divisible by any prime=p, where either p-2 or p+2 is prime.

Original entry on oeis.org

1, 2, 4, 8, 16, 23, 32, 37, 46, 47, 53, 64, 67, 74, 79, 83, 89, 92, 94, 97, 106, 113, 127, 128, 131, 134, 148, 157, 158, 163, 166, 167, 173, 178, 184, 188, 194, 211, 212, 223, 226, 233, 251, 254, 256, 257, 262, 263, 268, 277, 293, 296
Offset: 1

Views

Author

Leroy Quet, Jul 11 2001

Keywords

Comments

Complement of A062506.
n divisible only by single primes A007510. - Zak Seidov, May 11 2015

Examples

			46 is included because 46 = 2 * 23 and all (2+2), (2-2), (23+2), (23-2) are composite. - edited by _Zak Seidov_, May 11 2015
		

Crossrefs

Cf. A062506, A007510. - Zak Seidov, May 11 2015

Programs

  • Maple
    N:= 1000: # to get all terms <= N
    Primes:= select(isprime, {2,(2*i+1)$i=1..ceil((N+1)/2)}):
    LTwins:= Primes intersect map(`-`,Primes,2):
    A:= Vector(N):
    for p in LTwins do
       A[p*[$1..floor(N/p)]]:= 1;
       A[(p+2)*[$1..floor(N/(p+2))]]:= 1;
    od:
    select(t -> A[t]<>1, [$1..N]); # Robert Israel, May 11 2015
  • Mathematica
    Select[Range@296, #==1 || (p = First /@ FactorInteger@#; Nor @@ Flatten@ PrimeQ@ {p+2, p-2}) &] (* Giovanni Resta, May 12 2015 *)
  • PARI
    isok(n) = {my(f = factor(n)); for (i=1, #f~, p = f[i, 1]; if (isprime(p-2) || isprime(p+2), return (0));); return (1);} \\ Michel Marcus, May 20 2014

Extensions

Offset changed to 1 by Michel Marcus, May 20 2014