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.

A087103 Smallest jumping champion for prime(n).

This page as a plain text file.
%I A087103 #15 Feb 16 2025 08:32:50
%S A087103 1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,4,2,2,
%T A087103 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
%U A087103 2,2,2,2,2,2,2,6,6,6,6,6,2,2,2,2,2,6,6,6,2,2,2,2,4,4,4,4,4,4,4,4,4,6
%N A087103 Smallest jumping champion for prime(n).
%C A087103 A number is called a jumping champion for n, if it is the most frequently occurring difference between consecutive primes <= n;
%C A087103 there are occasionally several jumping champions: see A087102; A087104(n) is the greatest jumping champion for prime(n).
%H A087103 T. D. Noe, <a href="/A087103/b087103.txt">Table of n, a(n) for n = 2..1001</a>
%H A087103 A. Odlyzko, M. Rubinstein and M. Wolf, <a href="http://www.dtc.umn.edu/~odlyzko/doc/jumping.champions.pdf">Jumping Champions</a>
%H A087103 A. Odlyzko, M. Rubinstein and M. Wolf, <a href="http://www.emis.de/journals/EM/expmath/volumes/8/8.html">Jumping Champions</a>, Experimental Math., 8 (no. 2) (1999).
%H A087103 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/JumpingChampion.html">Jumping Champion</a>
%t A087103 d=Table[0, {100}]; p=2; Table[q=NextPrime[p]; d[[q-p]]++; p=q; Position[d, Max[d]][[1,1]], {1000}]
%Y A087103 Cf. A001223, A005250.
%K A087103 nonn
%O A087103 2,3
%A A087103 _Reinhard Zumkeller_, Aug 10 2003