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.

A216177 Primes p=prime(i) of level (1,4), i.e., such that A118534(i) = prime(i-4).

Original entry on oeis.org

6581, 7963, 13063, 14107, 17053, 17627, 20563, 21347, 22193, 22877, 28319, 30727, 34981, 35171, 41549, 42101, 45197, 46103, 48823, 53201, 53899, 56269, 65449, 65993, 66191, 69031, 69403, 73613, 74101, 74323, 75797, 81973, 86209, 91463, 96293, 101537, 102563
Offset: 1

Views

Author

Fabien Sibenaler, Mar 10 2013

Keywords

Comments

If prime(i) has level 1 in A117563 and 2*prime(i) - prime(i+1) = prime(i-k), then we say that prime(i) has level (1,k).

Examples

			a(2) = 7963 = prime(1006) because 2*prime(1006) - prime(1007) = 2*7963 - 7993 = 7933 = prime(1002).
		

Crossrefs

Subsequence of A125830 and A162174.

Programs

  • Mathematica
    With[{m = 4}, Prime@ Select[Range[m + 1, 10^4], If[MemberQ[{1, 2, 4}, #], 0, 2 Prime[#] - Prime[# + 1]] == Prime[# - m] &]] (* Michael De Vlieger, Jul 16 2017 *)