A355743 Numbers whose prime indices are all prime-powers.
1, 3, 5, 7, 9, 11, 15, 17, 19, 21, 23, 25, 27, 31, 33, 35, 41, 45, 49, 51, 53, 55, 57, 59, 63, 67, 69, 75, 77, 81, 83, 85, 93, 95, 97, 99, 103, 105, 109, 115, 119, 121, 123, 125, 127, 131, 133, 135, 147, 153, 155, 157, 159, 161, 165, 171, 175, 177, 179, 187
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 1: {} 3: {2} 5: {3} 7: {4} 9: {2,2} 11: {5} 15: {2,3} 17: {7} 19: {8} 21: {2,4} 23: {9} 25: {3,3} 27: {2,2,2} 31: {11} 33: {2,5} 35: {3,4} 41: {13} 45: {2,2,3}
Links
- Robert Price, Table of n, a(n) for n = 1..1410
Crossrefs
Allowing prime index 1 gives A302492.
These are the products of elements of A302493.
Requiring n to be a prime-power gives A302601.
These are the positions of 1's in A355741.
The squarefree case is A356065.
The complement is A356066.
A001222 counts prime-power divisors.
A034699 gives maximal prime-power divisor.
A355742 chooses a prime-power divisor of each prime index.
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],And@@PrimePowerQ/@primeMS[#]&]
Comments