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.

A038255 Triangle whose (i,j)-th entry is binomial(i,j)*6^(i-j).

This page as a plain text file.
%I A038255 #29 Jul 08 2025 22:13:31
%S A038255 1,6,1,36,12,1,216,108,18,1,1296,864,216,24,1,7776,6480,2160,360,30,1,
%T A038255 46656,46656,19440,4320,540,36,1,279936,326592,163296,45360,7560,756,
%U A038255 42,1,1679616,2239488,1306368,435456,90720,12096,1008
%N A038255 Triangle whose (i,j)-th entry is binomial(i,j)*6^(i-j).
%C A038255 T(n,k) = A013613(n,n-k), 0 <= k <= n. - _Reinhard Zumkeller_, Nov 21 2013
%H A038255 Reinhard Zumkeller, <a href="/A038255/b038255.txt">Rows n = 0..125 of triangle, flattened</a>
%H A038255 Naiomi T. Cameron and Asamoah Nkwanta, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL8/Cameron/cameron46.html">On Some (Pseudo) Involutions in the Riordan Group</a>, Journal of Integer Sequences, Vol. 8 (2005), Article 05.3.7.
%H A038255 B. N. Cyvin et al., <a href="http://match.pmf.kg.ac.rs/electronic_versions/Match34/match34_109-121.pdf">Isomer enumeration of unbranched catacondensed polygonal systems with pentagons and heptagons</a>, Match, No. 34 (Oct 1996), pp. 109-121.
%F A038255 G.f.: 1/(1 - 6*x - x*y). - _Ilya Gutkovskiy_, Apr 21 2017
%e A038255 1
%e A038255 6, 1
%e A038255 36, 12, 1
%e A038255 216, 108, 18, 1
%e A038255 1296, 864, 216, 24, 1
%e A038255 7776, 6480, 2160, 360, 30, 1
%e A038255 46656, 46656, 19440, 4320, 540, 36, 1
%e A038255 279936, 326592, 163296, 45360, 7560, 756, 42, 1
%e A038255 1679616, 2239488, 1306368, 435456, 90720, 12096, 1008, 48, 1
%p A038255 for i from 0 to 8 do seq(binomial(i, j)*6^(i-j), j = 0 .. i) od; # _Zerinvary Lajos_, Dec 21 2007
%t A038255 Table[Binomial[n,m]6^(n-m),{n,0,10},{m,0,n}]//Flatten (* _Harvey P. Dale_, Dec 25 2019 *)
%o A038255 (Haskell)
%o A038255 a038255 n k = a038255_tabl !! n !! k
%o A038255 a038255_row n = a038255_tabl !! n
%o A038255 a038255_tabl = map reverse a013613_tabl
%o A038255 -- _Reinhard Zumkeller_, Nov 21 2013
%Y A038255 Cf. A038207.
%Y A038255 Cf. A000420 (row sums), A013613 (mirrored), A110440, A007318, A000400.
%K A038255 nonn,tabl,easy
%O A038255 0,2
%A A038255 _N. J. A. Sloane_