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.

Showing 1-2 of 2 results.

A081955 a(n) = 2^r*3^s where r = n(n+1)/2 and s = n(n-1)/2.

Original entry on oeis.org

1, 2, 24, 1728, 746496, 1934917632, 30091839012864, 2807929681968365568, 1572081206902992767287296, 5280985496827154199640037916672, 106440332834866049138191223105387495424, 12872079797383178927229037635891253693013557248
Offset: 0

Views

Author

Amarnath Murthy, Apr 02 2003

Keywords

Crossrefs

Sequence contains the product of a row in A081954.

Programs

  • Mathematica
    Do[Print[2^(n*(n+1)/2)*3^(n*(n-1)/2)], {n, 10}] (* Ryan Propper, Jun 15 2005 *)
  • PARI
    {a(n) = 3^(n*(n-1)/2) * 2^(n*(n+1)/2)} /* Michael Somos, Dec 17 2009 */

Formula

a(n+1) = 2^(n+1)*3^n*a(n), a(1) = 2. - Ryan Propper, Jun 15 2005
A171795(n) = a(-n). a(n+1) * a(n-1) = 6 * a(n)^2. - Michael Somos, Dec 17 2009

Extensions

More terms from Ryan Propper, Jun 15 2005

A081954 Triangle read by rows: T(n, k) = 2^(n-k)*3^k, n >= 1, 0 <= k < n.

Original entry on oeis.org

2, 4, 6, 8, 12, 18, 16, 24, 36, 54, 32, 48, 72, 108, 162, 64, 96, 144, 216, 324, 486, 128, 192, 288, 432, 648, 972, 1458, 256, 384, 576, 864, 1296, 1944, 2916, 4374, 512, 768, 1152, 1728, 2592, 3888, 5832, 8748, 13122, 1024, 1536, 2304, 3456, 5184, 7776
Offset: 1

Views

Author

Amarnath Murthy, Apr 02 2003

Keywords

Examples

			Triangle begins:
2
4 6
8 12 18
16 24 36 54
32 48 72 108 162
...
		

Crossrefs

Leading diagonal is given by A025192.

Programs

  • PARI
    tabl(nrows) = {for (n=1, nrows, for (k=0, n-1, print1(2^(n-k)*3^k, ", ");); print(););} \\ Michel Marcus, May 14 2013

Extensions

Corrected and extended by David Wasserman, Jul 21 2004
Showing 1-2 of 2 results.