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.

A350429 Prime numbers p for which there exists at least one integer k < p such that p divides the k-th Bell number.

Original entry on oeis.org

5, 7, 13, 19, 23, 29, 37, 47, 53, 61, 67, 71, 73, 89, 101, 107, 131, 137, 139, 157, 163, 167, 173, 179, 181, 191, 193, 211, 223, 239, 241, 251, 271, 277, 281, 283, 293, 307, 311, 313, 331, 349, 353, 367, 401, 419, 431, 433, 439, 443, 449, 467, 491, 499, 509, 541
Offset: 1

Views

Author

Luis H. Gallardo, Dec 30 2021

Keywords

Comments

Igor Shparlinski proved in 1991 that k < (1/2)*binomial(2*p,p) (see A290059).

Examples

			a(1)=5 since modulo 5 we have B(0)=1, B(1)=1, B(2)=2, and B(3)=0.
		

Crossrefs

Programs

  • Mathematica
    q[p_] := Module[{k = 1}, While[k < p && ! Divisible[BellB[k], p], k++]; k < p]; Select[Range[500], PrimeQ[#] && q[#] &] (* Amiram Eldar, Dec 30 2021 *)