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.

A216697 Numbers n such that sigma(n) mod n = 12, n is divisible by 6, but n/6 is not prime.

Original entry on oeis.org

24, 54, 780, 2352, 430272, 184773312
Offset: 1

Views

Author

Michel Marcus, Sep 15 2012

Keywords

Comments

Motivated by A076496 comment: if n=6p, p>3 prime, then Mod(sigma(n),n)=12. So this sequence is included in A076496, but not in A084306.
Next term > 10^11. - Donovan Johnson, Sep 27 2012

Examples

			sigma(24) = 60 = 2*24+12, but 24/6=4 is not prime.
		

Crossrefs

Programs

  • PARI
    isOk(n) = { return ((n % 6 == 0) && (! isprime(n/6)) && (sigma(n) % n == 12));}