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.

A104587 Triangle read by rows, given by the matrix product A * B where A (A094727) = [1; 2, 3; 3, 4, 5; 4, 5, 6, 7; ...] and B = [1; 1, 1; 1, 1, 1; ...] (both are infinite lower triangular matrices with the other terms zero).

This page as a plain text file.
%I A104587 #13 Feb 07 2022 02:42:34
%S A104587 1,5,3,12,9,5,22,18,13,7,35,30,24,17,9,51,45,38,30,21,11,70,63,55,46,
%T A104587 36,25,13,92,84,75,65,54,42,29,15,117,108,98,87,75,62,48,33,17,145,
%U A104587 135,124,112,99,85,70,54,37,19,176,165,153,140,126,111,95,78,60,41,21
%N A104587 Triangle read by rows, given by the matrix product A * B where A (A094727) = [1; 2, 3; 3, 4, 5; 4, 5, 6, 7; ...] and B = [1; 1, 1; 1, 1, 1; ...] (both are infinite lower triangular matrices with the other terms zero).
%C A104587 Left column of the triangle = pentagonal numbers, A000326 (starting with 1).
%C A104587 Row sums = heptagonal pyramidal numbers, A002413.
%e A104587 Triangle begins:
%e A104587    1;
%e A104587    5,  3;
%e A104587   12,  9,  5;
%e A104587   22, 18, 13,  7;
%e A104587   35, 30, 24, 17,  9;
%e A104587   51, 45, 38, 30, 21, 11;
%e A104587   70, 63, 55, 46, 36, 25, 13;
%e A104587   92, 84, 75, 65, 54, 42, 29, 15;
%e A104587   ...
%o A104587 (PARI) tabl(nn) = {ma = matrix(nn, nn, n, k, (n+k-1)*(k<=n)); mb = matrix(nn, nn, n, k, (k<=n)); mt = ma*mb; for (i=1, nn, for (j=1, i, print1(ma[i,j], ", ");); print(););} \\ _Michel Marcus_, Mar 03 2014
%Y A104587 Cf. A000326, A094727, A002413.
%K A104587 nonn,tabl
%O A104587 0,2
%A A104587 _Gary W. Adamson_, Mar 17 2005
%E A104587 More terms from _Michel Marcus_, Mar 03 2014
%E A104587 Edited by _Michel Marcus_ and _N. J. A. Sloane_, Mar 03 2014