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.

A155874 Smallest positive composite number such that a(n)+n is also composite.

Original entry on oeis.org

4, 8, 4, 6, 4, 4, 4, 8, 4, 6, 4, 4, 4, 8, 4, 6, 4, 4, 4, 6, 4, 4, 4, 4, 4, 8, 4, 6, 4, 4, 4, 4, 4, 6, 4, 4, 4, 8, 4, 6, 4, 4, 4, 6, 4, 4, 4, 4, 4, 6, 4, 4, 4, 4, 4, 8, 4, 6, 4, 4, 4, 4, 4, 6, 4, 4, 4, 8, 4, 6, 4, 4, 4, 4, 4, 6, 4, 4, 4, 6, 4, 4, 4, 4, 4, 6, 4, 4, 4, 4, 4, 4, 4, 6, 4, 4, 4, 8, 4, 6, 4
Offset: 0

Views

Author

Eric Angelini, Jan 29 2009

Keywords

Comments

a(0)=4. Adding a(0) to n=0 gives 4+0=4, which is a composite number; adding a(1) to n=1 gives 8+1=9 which is composite; adding a(2) to n=2 gives 4+2=6 which is composite; adding a(3) to n=3 gives 6+3=9 which is composite; etc.
At least one of {n+4, n+6, n+8} is divisible by 3, so a(n) is in {4,6,8} for all n. - Charlie Neder, Dec 28 2018

Crossrefs

Cf. A122984.

Programs

  • PARI
    a(n) = {forcomposite(k=4, 10, if (!isprime(k+n), return(k)););} \\ Michel Marcus, Dec 28 2018

Formula

If n+4 is in A001359, a(n) = 8. If n+4 is in A067774, a(n) = 6. Otherwise, a(n) = 4. - Charlie Neder, Dec 28 2018

Extensions

More terms from Charlie Neder, Dec 28 2018