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.

A170842 G.f.: Product_{k>=1} (1 + 2x^(2^k-1) + 3x^(2^k)).

Original entry on oeis.org

1, 2, 3, 2, 7, 12, 9, 2, 7, 12, 13, 20, 45, 54, 27, 2, 7, 12, 13, 20, 45, 54, 31, 20, 45, 62, 79, 150, 243, 216, 81, 2, 7, 12, 13, 20, 45, 54, 31, 20, 45, 62, 79, 150, 243, 216, 85, 20, 45, 62, 79, 150, 243, 224, 133, 150, 259, 344, 537, 936, 1161, 810, 243, 2, 7, 12, 13, 20, 45
Offset: 0

Views

Author

N. J. A. Sloane, Jan 02 2010

Keywords

Comments

From Omar E. Pol, Apr 10 2021: (Start)
It appears that this is also an irregular triangle read by rows (see the example).
It appears that right border gives A000244.
It appears that row sums give A052934. (End)

Examples

			From _Omar E. Pol_, Apr 10 2021: (Start)
Written as an irregular triangle in which row lengths are A000079 the sequence begins:
1;
2, 3;
2, 7, 12, 9;
2, 7, 12, 13, 20, 45, 54, 27;
2, 7, 12, 13, 20, 45, 54, 31, 20, 45, 62, 79, 150, 243, 216, 81;
2, 7, 12, 13, 20, 45, 54, 31, 20, 45, 62, 79, 150, 243, 216, 85, 20, 45, 62, ...
(End)
		

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[Product[1+2x^(2^k-1)+3x^2^k,{k,10}],{x,0,70}],x] (* Harvey P. Dale, Apr 09 2021 *)
  • PARI
    D_x(N) = {my( x='x+O('x^N));Vec(prod(k=1,logint(N,2)+1,(1+2*x^(2^k-1)+3*x^(2^k))))}
    D_x((2^6)+1) \\ John Tyler Rascoe, Aug 16 2024

A383369 Population of elementary triangular automaton rule 90 at generation n, starting from a lone 1 cell at generation 0.

Original entry on oeis.org

1, 4, 6, 12, 6, 24, 24, 48, 6, 24, 36, 72, 24, 96, 96, 192, 6, 24, 36, 72, 36, 144, 144, 288, 24, 96, 144, 288, 96, 384, 384, 768, 6, 24, 36, 72, 36, 144, 144, 288, 36, 144, 216, 432, 144, 576, 576, 1152, 24, 96, 144, 288, 144, 576, 576, 1152, 96, 384, 576, 1152, 384, 1536, 1536, 3072, 6
Offset: 0

Views

Author

Paul Cousin, Apr 24 2025

Keywords

Comments

An Elementary Triangular Automaton (ETA) is a cellular automaton in the triangular grid where cells hold binary states and rules are local to the first neighborhood. There are 256 possible ETA rules.
Rule 90 (1011010 in binary):
-----------------------------------------------
|state of the cell |1|1|1|1|0|0|0|0|
|sum of the neighbors' states |3|2|1|0|3|2|1|0|
|cell's next state |0|1|0|1|1|0|1|0|
-----------------------------------------------
This is one of the 4 ETA rules (85, 90, 165 and 170) that replicates the pattern given as initial condition.

Examples

			Written as an irregular triangle with row lengths A000079, starting from n=1, the sequence begins:
  4;
  6, 12;
  6, 24, 24, 48;
  6, 24, 36, 72, 24, 96, 96, 192;
  6, 24, 36, 72, 36, 144, 144, 288, 24, 96, 144, 288, 96, 384, 384, 768;
...
It appears that the right border gives A110594.
		

Crossrefs

Pattern replicating ETA rules: A275667 (rule 170).
A247640 is a bisection.
A246035 is the analog on the square cells.
Showing 1-2 of 2 results.