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.

A214810 Triangle read by rows: T(n,k) (n>=1, 0 <= k <= p where p = n-th prime) = Bell(k) mod p (cf. A000110).

This page as a plain text file.
%I A214810 #21 May 06 2024 14:37:22
%S A214810 1,1,0,1,1,2,2,1,1,2,0,0,2,1,1,2,5,1,3,0,2,1,1,2,5,4,8,5,8,4,5,2,2,1,
%T A214810 1,2,5,2,0,8,6,6,9,2,9,11,2,1,1,2,5,15,1,16,10,9,16,1,15,11,6,15,11,
%U A214810 14,2,1,1,2,5,15,14,13,3,17,0,18,4,5,7,14,16,15,1,10,2,1,1,2,5,15,6,19,3,0,10,9,1,20,1,12,9,5,6,6,9,4,16,22,2,1,1,2,5,15,23,0
%N A214810 Triangle read by rows: T(n,k) (n>=1, 0 <= k <= p where p = n-th prime) = Bell(k) mod p (cf. A000110).
%C A214810 The n-th row gives Bell numbers mod prime(n) and has length prime(n)+1.
%H A214810 Alois P. Heinz, <a href="/A214810/b214810.txt">Rows n = 1..100, flattened</a>
%H A214810 J. Levine and R. E. Dalton, <a href="https://doi.org/10.1090/S0025-5718-1962-0148604-2">Minimum Periods, Modulo p, of First Order Bell Exponential Integrals</a>, Mathematics of Computation, 16 (1962), 416-423. See Table 2.
%e A214810 Triangle begins:
%e A214810   [1, 1, 0],
%e A214810   [1, 1, 2, 2],
%e A214810   [1, 1, 2, 0, 0, 2],
%e A214810   [1, 1, 2, 5, 1, 3, 0, 2],
%e A214810   [1, 1, 2, 5, 4, 8, 5, 8, 4, 5, 2, 2],
%e A214810   [1, 1, 2, 5, 2, 0, 8, 6, 6, 9, 2, 9, 11, 2],
%e A214810   [1, 1, 2, 5, 15, 1, 16, 10, 9, 16, 1, 15, 11, 6, 15, 11, 14, 2],
%e A214810   [1, 1, 2, 5, 15, 14, 13, 3, 17, 0, 18, 4, 5, 7, 14, 16, 15, 1, 10, 2],
%e A214810   ...
%p A214810 T:= n-> (p-> seq(combinat[bell](k) mod p, k=0..p))(ithprime(n)):
%p A214810 seq(T(n), n=1..10);  # _Alois P. Heinz_, Jun 07 2023
%t A214810 A214810row[n_]:=Mod[BellB[Range[0,Prime[n]]],Prime[n]];Array[A214810row,50] (* _Paolo Xausa_, Aug 07 2023 *)
%Y A214810 Cf. A000110, A054767.
%K A214810 nonn,look,tabf
%O A214810 1,6
%A A214810 _N. J. A. Sloane_, Jul 31 2012