A162630
Triangle read by rows in which row n lists the number of states of the subshells of the n-th shell of the nuclear shell model ordered by energy level in increasing order.
Original entry on oeis.org
2, 4, 2, 6, 2, 4, 8, 4, 2, 6, 10, 6, 2, 4, 8, 12, 8, 4, 2, 6, 10, 14, 10, 6, 2, 4, 8, 12, 16, 12, 8, 4, 2, 6, 10, 14, 18, 14, 10, 6, 2, 4, 8, 12, 16, 20, 16, 12, 8, 4, 2, 6, 10, 14, 18, 22, 18, 14, 10, 6, 2, 4, 8, 12, 16, 20, 24, 20, 16, 12, 8, 4, 2
Offset: 1
A geometric shell model of the atomic nucleus:
+---------------------- i ----------------------+
| +------------------ h ------------------+ |
| | +-------------- g --------------+ | |
| | | +---------- f ----------+ | | |
| | | | +------ d ------+ | | | |
| | | | | +-- p --+ | | | | |
| | | | | | s | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | 2 | | | | |
| | | | 4 2 | | | |
| | | 6 2 4 | | |
| | 8 4 2 6 | |
| 10 6 2 4 8 |
12 8 4 2 6 10
14 10 6 2 4 8 12
| | | | | | | | | | | | |
| | | | | | +1/2+ | | | | |
| | | | | +--- 3/2 ---+ | | | |
| | | | +------- 5/2 -------+ | | |
| | | +----------- 7/2 -----------+ | |
| | +--------------- 9/2 ---------------+ |
| +------------------ 11/2 -------------------+
+---------------------- 13/2 -----------------------
-
t[n_, 1] := n; t[n_, n_] := n-1;
t[n_, k_] := Abs[2k - n - If[2k <= n+1, 2, 1]];
2 Table[t[n, k], {n, 1, 12}, {k, 1, n}] // Flatten (* Jean-François Alcover, Nov 17 2018 *)
A212013
Triangle read by rows: total number of pairs of states of the first n subshells of the nuclear shell model in which the subshells are ordered by energy level in increasing order.
Original entry on oeis.org
1, 3, 4, 7, 9, 10, 14, 17, 19, 20, 25, 29, 32, 34, 35, 41, 46, 50, 53, 55, 56, 63, 69, 74, 78, 81, 83, 84, 92, 99, 105, 110, 114, 117, 119, 120, 129, 137, 144, 150, 155, 159, 162, 164, 165, 175, 184, 192, 199, 205, 210, 214, 217, 219, 220, 231, 241, 250, 258, 265, 271, 276, 280, 283, 285, 286
Offset: 1
Example 1: written as a triangle in which row i is related to the (i-1)st level of nucleus. Triangle begins:
1;
3, 4;
7, 9, 10;
14, 17, 19, 20;
25, 29, 32, 34, 35;
41, 46, 50, 53, 55, 56;
63, 69, 74, 78, 81, 83, 84;
92, 99, 105, 110, 114, 117, 119, 120;
129, 137, 144, 150, 155, 159, 162, 164, 165;
175, 184, 192, 199, 205, 210, 214, 217, 219, 220;
...
Column 1 gives positive terms of A004006. Right border gives positive terms of A000292. Row sums give positive terms of A006325.
Example 2: written as an irregular triangle in which row j is related to the j-th shell of nucleus. Note that in this case row 4 has only one term. Triangle begins:
1;
3, 4;
7, 9, 10;
14;
17, 19, 20, 25;
29, 32, 34, 35, 41;
46, 50, 53, 55, 56, 63;
69, 74, 78, 81, 83, 84, 92;
99, 105, 110, 114, 117, 119, 120, 129;
137, 144, 150, 155, 159, 162, 164, 165, 175;
184, 192, 199, 205, 210, 214, 217, 219, 220, 231;
...
-
row =: monad define
d=.>y
< |. (+/d)-d
)
;}. row"0 <\ +/\ 1+i.11 NB. Vanessa McHale (vamchale(AT)gmail.com), Mar 01 2025
-
Accumulate[Flatten[Range[Range[15], 1, -1]]] (* Paolo Xausa, Mar 15 2025 *)
-
row(n) = vector(n, k, n*(n+1)*(n+2)/6 - (n-k)*(n-k+1)/2); \\ Michel Marcus, Mar 10 2025
A212123
Total number of pairs of states of the first n subshells of the nuclear shell model in which the subshells are ordered by energy level in increasing order.
Original entry on oeis.org
1, 3, 4, 7, 8, 10, 14, 16, 19, 20, 25, 29, 32, 34, 35, 41, 46, 50, 53, 55, 56, 63, 68, 71, 77, 81, 82, 84, 92
Offset: 1
Example 1: written as a triangle in which row i is related to the (i-1)st level of nucleus. Triangle begins:
1;
3, 4;
7, 8, 10;
14, 16, 19, 20;
25, 29, 32, 34, 35;
41, 46, 50, 53, 55, 56;
63, 68, 71, 77, 81, 82, 84;
...
Example 2: written as an irregular triangle in which row j is related to the j-th shell of nucleus. Note that in this case row 4 has only one term. Triangle begins:
1;
3, 4;
7, 8, 10;
14,
16, 19, 20, 25;
29, 32, 34, 35, 41;
46, 50, 53, 55, 56, 63;
68, 71, 77, 81, 82, 84, 92;
...
A213363
Total number of pairs of states of the first n subshells of the nuclear shell model in which the subshells are ordered by energy level in increasing order.
Original entry on oeis.org
1, 3, 4, 7, 8, 10, 14, 16, 19, 20, 25, 28, 32, 33, 35, 41, 45, 47, 54, 59, 60, 63, 68, 74, 82, 85, 86, 90, 92
Offset: 1
Written as an irregular triangle in which row j is related to the j-th shell of nucleus. Note that row 4 has only one term. Triangle begins:
1;
3, 4;
7, 8, 10;
14;
16, 19, 20, 25;
28, 32, 33, 35, 41;
45, 47, 54, 59, 60, 63;
68, 74, 82, 85, 86, 90, 92;
...
A213373
Total number of pairs of states of the first n subshells of the nuclear shell model in which the subshells are ordered by energy level in increasing order.
Original entry on oeis.org
1, 3, 4, 7, 8, 10, 14, 16, 19, 20, 25, 29, 32, 38, 40, 41, 45, 50, 57, 59, 62, 63
Offset: 1
Written as an irregular triangle in which row j is related to the j-th shell of nucleus. Note that row 4 has only one term. Triangle begins:
1;
3, 4;
7, 8, 10;
14;
16, 19, 20, 25;
29, 32, 38, 40, 41;
45, 50, 57, 59, 62, 63;
...
A210984
Total number of states of the first n subshells of the nuclear shell model in which the subshells are ordered by energy level in increasing order.
Original entry on oeis.org
2, 6, 8, 14, 16, 20, 28, 32, 34, 40, 50, 56, 58, 62, 70, 82, 90, 94, 96, 102, 112, 126, 136, 142, 144, 148, 156, 168, 184, 196, 204, 208, 210, 216, 226, 240, 258, 272, 282, 288, 290, 294, 302, 314, 330, 350, 366, 378, 386, 390, 392, 398, 408, 422, 440, 462
Offset: 1
Example 1: written as a triangle in which row i is related to the (i-1)st level of nucleus the sequence begins:
2;
6, 8;
14, 16, 20;
28, 32, 34, 40;
50, 56, 58, 62, 70;
82, 90, 94, 96, 102, 112;
126, 136, 142, 144, 148, 156, 168;
184, 196, 204, 208, 210, 216, 226, 240;
258, 272, 282, 288, 290, 294, 302, 314, 330;
350, 366, 378, 386, 390, 392, 398, 408, 422, 440;
...
Column 1 gives positive terms of A033547. Right border gives positive terms of A007290.
Example 2: written as an irregular triangle in which row j is related to the j-th shell of nucleus. In this case note that row 4 has only one term. Triangle begins:
2;
6, 8;
14, 16, 20;
28;
32, 34, 40; 50;
56, 58, 62, 70; 82;
90, 94, 96, 102, 112; 126;
136, 142, 144, 148, 156, 168; 184;
196, 204, 208, 210, 216, 226, 240; 258;
272, 282, 288, 290, 294, 302, 314, 330, 350;
366, 378, 386, 390, 392, 398, 408, 422, 440, 462;
...
First seven terms of right border give the "magic numbers" A018226.
Showing 1-6 of 6 results.
Comments