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.

A182702 Triangle T(n,k) = n*(A000041(n-k)) read by rows, k>=0.

This page as a plain text file.
%I A182702 #11 Jun 23 2020 19:05:59
%S A182702 1,4,2,9,6,3,20,12,8,4,35,25,15,10,5,66,42,30,18,12,6,105,77,49,35,21,
%T A182702 14,7,176,120,88,56,40,24,16,8,270,198,135,99,63,45,27,18,9,420,300,
%U A182702 220,150,110,70,50,30,20,10,616,462,330,242,165,121,77,55,33,22,11
%N A182702 Triangle T(n,k) = n*(A000041(n-k)) read by rows, k>=0.
%C A182702 The same as A182700, but without the last term of row n.
%H A182702 Robert Price, <a href="/A182702/b182702.txt">Table of n, a(n) for n = 1..5050</a> (First 100 rows)
%e A182702 Triangle begins:
%e A182702 1;
%e A182702 4, 2;
%e A182702 9, 6, 3;
%e A182702 20, 12, 8, 4;
%e A182702 35, 25, 15, 10, 5;
%e A182702 66, 42, 30, 18, 12, 6;
%t A182702 Table[n*PartitionsP[n-k], {n, 0, 11}, {k, 0,  n - 1}] // Flatten (* _Robert Price_, Jun 23 2020 *)
%o A182702 (PARI) tabl(nn) = {for (n = 1, nn, for (k = 0, n-1, print1(n*numbpart(n-k), ", ");); print(););} \\ _Michel Marcus_, Feb 13 2014
%Y A182702 Cf. A000041, A135010, A138121, A182701, A182702.
%Y A182702 Column 1 give A066186.
%K A182702 nonn,tabl
%O A182702 1,2
%A A182702 _Omar E. Pol_, Nov 28 2010
%E A182702 More terms from _Michel Marcus_, Feb 13 2014