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-3 of 3 results.

A137583 Number of elements in the n-th period of the Janet periodic table of elements.

Original entry on oeis.org

2, 2, 8, 8, 18, 18, 32, 32
Offset: 1

Views

Author

Paul Curtz, Apr 26 2008

Keywords

Comments

Essentially 2 followed by the first terms of A093907.
This puts Hydrogen and Helium in the first row, Lithium and Beryllium into the second, Boron to Magnesium into the third etc.

Crossrefs

Programs

  • Mathematica
    Flatten@ Table[2 (n #)^2 & /@ {-1, 1}, {n, 4}] (* Michael De Vlieger, Jul 22 2016 *)

Extensions

Edited by R. J. Mathar, Oct 02 2009

A168281 Triangle T(n,m) = 2*(min(n - m + 1, m))^2 read by rows.

Original entry on oeis.org

2, 2, 2, 2, 8, 2, 2, 8, 8, 2, 2, 8, 18, 8, 2, 2, 8, 18, 18, 8, 2, 2, 8, 18, 32, 18, 8, 2, 2, 8, 18, 32, 32, 18, 8, 2, 2, 8, 18, 32, 50, 32, 18, 8, 2, 2, 8, 18, 32, 50, 50, 32, 18, 8, 2, 2, 8, 18, 32, 50, 72, 50, 32, 18, 8, 2, 2, 8, 18, 32, 50, 72, 72, 50, 32, 18, 8, 2, 2, 8, 18, 32, 50, 72, 98, 72
Offset: 1

Views

Author

Paul Curtz, Nov 22 2009

Keywords

Comments

Row sums are A099956(n-1) = 2*A005993(n-1).
The flattened triangle is simply 2 followed by A137508.
If A106314 is interpreted as a triangle, T(n,m) = 2*A106314(n,m).

Examples

			The table starts in row n=1 with columns 1<=m<=n as:
  2;
  2,2;
  2,8,2;
  2,8,8,2;
  2,8,18,8,2;
  2,8,18,18,8,2;
  ...
		

Crossrefs

Programs

  • Maple
    A168281 := proc(n,m) 2*(min(n+1-m,m))^2 ; end proc:
    seq(seq(A168281(n,m),m=1..n),n=1..20) ;
  • Mathematica
    Table[Map[2 Min[n + # - 1, #]^2 &, Drop[#, -Boole@ EvenQ@ n] ~Join~ Reverse@ # &@ Range@ Floor[n/2]], {n, 2, 14}] // Flatten (* Michael De Vlieger, Jul 19 2016 *)

Extensions

Rephrased all comments in terms of a triangle by R. J. Mathar, Nov 24 2010
More terms from Michael De Vlieger, Jul 19 2016
Definition corrected by Georg Fischer, Nov 11 2021

A138300 Differences of each column for atomic numbers of Mendeleyev-Seaborg 7*32 elements periodic table,first extension,A138096 table.86 terms.Horizontal lecture.

Original entry on oeis.org

2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32
Offset: 0

Views

Author

Paul Curtz, May 07 2008

Keywords

Examples

			First column differences: 2, 8, 8, 18, 18, 32; second: 8, 8, 18, 18, 32.
Table: 1 2, 11 8's, 27 18's, 47 32's
2.............................................................................................8
8..8...........................................................................8..8..8..8..8..8
8..8..........................................................................18.18.18.18.18.18
18.18.18...........................................18.18.18.18.18.18.18.18.18.18.18.18.18.18.18
18.18.18...........................................32.32.32.32.32.32.32.32.32.32.32.32.32.32.32
32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32
		

Crossrefs

Showing 1-3 of 3 results.