login
A217740
Abundant numbers with abundant subscripts.
1
60, 84, 90, 104, 132, 160, 176, 186, 208, 228, 240, 260, 282, 304, 308, 336, 342, 354, 368, 378, 400, 416, 426, 438, 450, 464, 474, 498, 522, 546, 570, 576, 594, 618, 642, 654, 666, 696, 720, 728, 740, 762, 786, 804, 812, 820, 834, 852, 860, 882, 900, 910, 918
OFFSET
1,1
COMMENTS
The abundant-index-of-abundant numbers, or "meta-abundant" numbers.
Subset of A005101.
LINKS
EXAMPLE
The first abundant number is 12, so the first meta-abundant number is the 12th abundant number; A005101(A005101(1))=A005101(12)=60.
MATHEMATICA
abQ[n_] := DivisorSigma[1, n] > 2 n; s = {}; c = 0; Do[If[abQ[n], c++; If[abQ[c], AppendTo[s, n]]], {n, 1, 1000}]; s (* Amiram Eldar, Jun 21 2019 *)
CROSSREFS
Cf. A005101 (abundant numbers).
Cf. A006450 (primes with prime subscripts).
Sequence in context: A067207 A261375 A349758 * A375055 A123712 A178212
KEYWORD
nonn
STATUS
approved