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.

A263282 Numbers n such that 6n is in A002822 but n is not.

Original entry on oeis.org

63, 65, 88, 98, 102, 133, 157, 163, 185, 193, 198, 203, 208, 210, 233, 245, 250, 262, 310, 340, 380, 387, 413, 437, 457, 462, 473, 478, 483, 493, 507, 508, 515, 530, 585, 600, 627, 635, 640, 647, 658, 662, 677, 718, 742, 765, 772, 793, 795, 830, 847, 857
Offset: 1

Views

Author

Jason Kimberley, Oct 13 2015

Keywords

Comments

To use Dinculescu's terminology (see links): non-ranks n such that 6n is a twin-rank.

Examples

			Take n = 63; then 6n = 378 and 36n = 2268; now 379, 2267, and 2269 are prime, but 377 = 13 x 29.
		

Crossrefs

Cf. A002822.

Programs

  • Magma
    IsInA2822:=func;
    [n:n in[1..10^3]|not IsInA2822(n)and IsInA2822(6*n)];
  • Mathematica
    s = Select[Range@ 5184, PrimeQ[6 # - 1] && PrimeQ[6 # + 1] &]; Select[s, IntegerQ[#/6] && ! MemberQ[s, #/6] &]/6 (* Michael De Vlieger, Oct 13 2015, after N. J. A. Sloane at A002822 *)