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.

A266742 Irregular triangle read by rows: T(n,k) = floor(n/(prime(k)-1)), n>=1, 1 <= k <= pi(n+1), where pi is A000720.

This page as a plain text file.
%I A266742 #15 Jan 08 2016 14:29:00
%S A266742 1,2,1,3,1,4,2,1,5,2,1,6,3,1,1,7,3,1,1,8,4,2,1,9,4,2,1,10,5,2,1,1,11,
%T A266742 5,2,1,1,12,6,3,2,1,1,13,6,3,2,1,1,14,7,3,2,1,1,15,7,3,2,1,1,16,8,4,2,
%U A266742 1,1,1,17,8,4,2,1,1,1,18,9,4,3,1,1,1,1
%N A266742 Irregular triangle read by rows: T(n,k) = floor(n/(prime(k)-1)), n>=1, 1 <= k <= pi(n+1), where pi is A000720.
%H A266742 H. T. Davis, <a href="/A002443/a002443.pdf">Tables of the Mathematical Functions</a>, Vols. 1 and 2, 2nd ed., 1963, Vol. 3 (with V. J. Fisher), 1962; Principia Press of Trinity Univ., San Antonio, TX. [Annotated scan of pages 204-208 of Volume 2.] See Table 1 on page 205.
%e A266742 Triangle begins:
%e A266742 [1]
%e A266742 [2, 1]
%e A266742 [3, 1]
%e A266742 [4, 2, 1]
%e A266742 [5, 2, 1]
%e A266742 [6, 3, 1, 1]
%e A266742 [7, 3, 1, 1]
%e A266742 [8, 4, 2, 1]
%e A266742 [9, 4, 2, 1]
%e A266742 [10, 5, 2, 1, 1]
%e A266742 [11, 5, 2, 1, 1]
%e A266742 [12, 6, 3, 2, 1, 1]
%e A266742 [13, 6, 3, 2, 1, 1]
%e A266742 [14, 7, 3, 2, 1, 1]
%e A266742 ...
%p A266742 with(numtheory);
%p A266742 f:=n->[seq(floor(n/(ithprime(i)-1)),i=1..pi(n+1))];
%p A266742 for n from 1 to 20 do lprint(f(n)); od:
%Y A266742 Cf. A000720, A002443, A002444, A266743.
%K A266742 nonn,tabf
%O A266742 1,2
%A A266742 _N. J. A. Sloane_, Jan 08 2016