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.

A204623 Number of (n+1)X2 0..2 arrays with every 2X2 subblock having unequal diagonal elements or unequal antidiagonal elements, and new values 0..2 introduced in row major order.

Original entry on oeis.org

12, 96, 768, 6144, 49152, 393216, 3145728, 25165824, 201326592, 1610612736, 12884901888, 103079215104, 824633720832, 6597069766656, 52776558133248, 422212465065984, 3377699720527872, 27021597764222976, 216172782113783808
Offset: 1

Views

Author

R. H. Hardin Jan 17 2012

Keywords

Comments

Column 1 of A204630

Examples

			Some solutions for n=3
..0..0....0..0....0..0....0..0....0..1....0..0....0..0....0..0....0..0....0..1
..0..1....1..2....0..1....0..1....2..1....1..1....0..1....0..1....0..1....1..1
..2..2....0..2....0..1....1..2....2..0....2..0....1..1....0..0....2..1....1..2
..0..2....2..1....0..1....2..2....0..1....0..1....1..2....2..1....0..2....1..2
		

Crossrefs

Formula

Empirical: a(n) = 8*a(n-1)

A270568 Expansion of g.f. (1+4*x)/(1-8*x).

Original entry on oeis.org

1, 12, 96, 768, 6144, 49152, 393216, 3145728, 25165824, 201326592, 1610612736, 12884901888, 103079215104, 824633720832, 6597069766656, 52776558133248, 422212465065984, 3377699720527872, 27021597764222976, 216172782113783808, 1729382256910270464, 13835058055282163712
Offset: 0

Views

Author

Colin Barker, Mar 19 2016

Keywords

Comments

Partial sums are 1, 13, 109, 877, 7021, 56173, ...

Crossrefs

Cf. A001018 (powers of 8), A094085, A204623.

Programs

  • Mathematica
    CoefficientList[Series[(1 + 4 x)/(1 - 8 x), {x, 0, 20}], x] (* Michael De Vlieger, Mar 19 2016 *)
    Join[{1},NestList[8#&,12,30]] (* Harvey P. Dale, Oct 05 2022 *)
  • PARI
    Vec((1+4*x)/(1-8*x) + O(x^30))

Formula

G.f.: (1+4*x)/(1-8*x).
a(n) = 8*a(n-1) for n>1.
a(n) = 12*8^(n-1) for n>0.
a(n) = A094085(n), n>1. - R. J. Mathar, Mar 21 2016
E.g.f.: (3*exp(8*x) - 1)/2. - Elmo R. Oliveira, Mar 25 2025
Showing 1-2 of 2 results.