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.

A383134 Array read by ascending antidiagonals: A(n,k) is the length of the arithmetic progression of only primes having difference n and first term prime(k).

Original entry on oeis.org

2, 1, 1, 2, 3, 1, 1, 1, 2, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 5, 1, 1, 1, 2, 1, 2, 3, 1, 3, 1, 2, 1, 1, 1, 1, 1, 2, 1, 4, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 2, 1, 2, 1, 2, 1, 1, 1, 1, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1
Offset: 1

Views

Author

Stefano Spezia, Apr 17 2025

Keywords

Examples

			The array begins as:
  2, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...
  1, 3, 2, 1, 2, 1, 2, 1, 1, 2, ...
  2, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...
  1, 3, 1, 2, 1, 2, 1, 2, 1, 1, ...
  2, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...
  1, 1, 5, 3, 4, 2, 3, 1, 2, 1, ...
  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...
  1, 3, 2, 1, 2, 1, 1, 1, 2, 2, ...
  2, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...
  1, 3, 1, 2, 1, 2, 1, 2, 1, 1, ...
  ...
A(2,2) = 3 since 3 primes are in arithmetic progression with a difference of 2 and the first term equal to the 2nd prime: 3, 5, and 7.
A(6,3) = 5 since 5 primes are in arithmetic progression with a difference of 6 and the first term equal to the 3rd prime: 5, 11, 17, 23, and 29.
		

References

  • Paulo Ribenboim, The Little Book of Bigger Primes, Springer-Verlag NY 2004. See p. 139.

Crossrefs

Programs

  • Mathematica
    A[n_,k_]:=Module[{count=1,sum=Prime[k]},While[PrimeQ[sum+=n], count++]; count]; Table[A[n-k+1,k],{n,13},{k,n}]//Flatten

Formula

A(A006512(n),k) = 1 for n > 1.
A(A040976(n),k) = A054977(k+1).