A325374 Numbers with adjusted frequency depth 3 whose prime indices cover an initial interval of positive integers.
6, 30, 36, 210, 216, 900, 1296, 2310, 7776, 27000, 30030, 44100, 46656, 279936, 510510, 810000, 1679616, 5336100, 9261000, 9699690, 10077696, 24300000, 60466176, 223092870, 362797056, 729000000, 901800900, 1944810000, 2176782336, 6469693230, 12326391000
Offset: 1
Keywords
Examples
The sequence of terms together with their prime indices begins: 6: {1,2} 30: {1,2,3} 36: {1,1,2,2} 210: {1,2,3,4} 216: {1,1,1,2,2,2} 900: {1,1,2,2,3,3} 1296: {1,1,1,1,2,2,2,2} 2310: {1,2,3,4,5} 7776: {1,1,1,1,1,2,2,2,2,2} 27000: {1,1,1,2,2,2,3,3,3} 30030: {1,2,3,4,5,6} 44100: {1,1,2,2,3,3,4,4} 46656: {1,1,1,1,1,1,2,2,2,2,2,2}
Links
- Amiram Eldar, Table of n, a(n) for n = 1..5292
Crossrefs
Programs
-
Mathematica
normQ[n_Integer]:=Or[n==1,PrimePi/@First/@FactorInteger[n]==Range[PrimeNu[n]]]; fdadj[n_Integer]:=If[n==1,0,Length[NestWhileList[Times@@Prime/@Last/@FactorInteger[#1]&,n,!PrimeQ[#1]&]]]; Select[Range[10000],normQ[#]&&fdadj[#]==3&]
Comments