OFFSET
1,1
COMMENTS
A prime index of n is a number m such that prime(m) divides n. The multiset of prime indices of n is row n of A112798. A number n is totally abnormal iff (1) the prime indices of n do not cover an initial interval of positive integers, and either (2a) n is prime, or (2b) the prime exponents (or prime signature) of n forms a totally abnormal integer partition, or, equivalently to (2b), A181819(n) is totally abnormal.
The enumeration of totally abnormal integer partitions by sum is given by A325332.
EXAMPLE
The sequence of terms together with their prime indices are the following. See also the example at A325373.
3: {2}
5: {3}
7: {4}
9: {2,2}
11: {5}
13: {6}
17: {7}
19: {8}
23: {9}
25: {3,3}
27: {2,2,2}
29: {10}
31: {11}
37: {12}
41: {13}
43: {14}
47: {15}
49: {4,4}
53: {16}
59: {17}
MATHEMATICA
normQ[n_Integer]:=Or[n==1, PrimePi/@First/@FactorInteger[n]==Range[PrimeNu[n]]];
totabnQ[n_]:=And[!normQ[n], PrimeQ[n]||totabnQ[Times@@Prime/@Last/@If[n==1, {}, FactorInteger[n]]]];
Select[Range[100], totabnQ]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 02 2019
STATUS
approved