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.

A048154 Triangular array T read by rows: T(n,k)=k^3 mod n, for k=1,2,...,n, n=1,2,...

This page as a plain text file.
%I A048154 #15 Jun 29 2016 00:20:24
%S A048154 0,1,0,1,2,0,1,0,3,0,1,3,2,4,0,1,2,3,4,5,0,1,1,6,1,6,6,0,1,0,3,0,5,0,
%T A048154 7,0,1,8,0,1,8,0,1,8,0,1,8,7,4,5,6,3,2,9,0,1,8,5,9,4,7,2,6,3,10,0,1,8,
%U A048154 3,4,5,0,7,8,9,4,11,0,1,8,1,12,8,8,5,5,1,12,5,12,0
%N A048154 Triangular array T read by rows: T(n,k)=k^3 mod n, for k=1,2,...,n, n=1,2,...
%H A048154 T. D. Noe, <a href="/A048154/b048154.txt">Rows n=1..100 of triangle, flattened</a>
%e A048154 Rows:
%e A048154 {0};
%e A048154 {1, 0};
%e A048154 {1, 2, 0};
%e A048154 {1, 0, 3, 0};
%e A048154 {1, 3, 2, 4, 0};
%e A048154 {1, 2, 3, 4, 5, 0};
%e A048154 ...
%t A048154 Table[Mod[k^3, n], {n, 13}, {k, n}] // Flatten (* _Michael De Vlieger_, Jun 26 2016 *)
%Y A048154 Cf. A048155.
%K A048154 nonn,tabl
%O A048154 1,5
%A A048154 _Clark Kimberling_