A167268 Janet's sequence: Number of elements for each successively filled electronic subshell of an atom.
2, 2, 6, 2, 6, 2, 10, 6, 2, 10, 6, 2, 14, 10, 6, 2, 14, 10, 6, 2, 18, 14, 10, 6, 2, 18, 14, 10, 6, 2, 22, 18, 14, 10, 6, 2, 22, 18, 14, 10, 6, 2, 26, 22, 18, 14, 10, 6, 2, 26, 22, 18, 14, 10, 6, 2, 30, 26, 22, 18, 14, 10, 6, 2, 30, 26, 22, 18, 14, 10, 6
Offset: 1
References
- Charles Janet, Considérations sur la structure du noyau de l'atome, N 5, Décembre 1929, Beauvais, 2+45 pages, 4 leaflets.
Links
- Daniel Forgues, Table of n, a(n) for n = 1..9899
- The Chemogenesis web book, Quantum Numbers to Periodic Tables.
- Szymon Łukaszyk and Wawrzyniec Bieniawski, Assembly Theory of Binary Messages (How to Assemble a Black Hole and Use it to Assemble New Binary Information?), Preprints (2024).
Programs
-
Mathematica
row[n_] := Range[2, 4*Floor[n/2] + 2, 4]; Flatten[ Table[ row[n] // Reverse, {n, 0, 15}]] (* Jean-François Alcover, Oct 02 2012 *)
-
Python
from mpmath.libmp import sqrtrem def a(n): s, r = sqrtrem(n) return 4 * (-n % (s + (r>s))) + 2 # Christoph B. Kassir, Apr 07 2022
Formula
a(n) = 4*((-n) mod round(sqrt(n))) + 2. - Jon E. Schoenfield, Sep 08 2013
a(n) = 4*A216607(n) + 2. - Szymon Lukaszyk, Oct 27 2023
Extensions
Edited by Daniel Forgues, May 09 2011
Comments