OFFSET
1,2
COMMENTS
For any n > 0:
- a(n) is a multiple of 2 iff a(n) is a multiple of 3,
- if a(n) is a multiple of 2 then A007814(a(n)) = A300955(A007949(a(n))) and A300955(A007814(a(n))) = A007949(a(n)),
- if a prime p > 3 divides a(n), then the p-adic valuation of a(n) belongs to this sequence.
Squarefree numbers coprime to 6 are in this sequence, and all members of this sequence are 0, 1, or 5 mod 6, so the lower density is at least 3/Pi^2 = 0.303... and the upper density is at most 1/2. This could be improved with more care. - Charles R Greathouse IV, May 17 2024
EXAMPLE
A300955(42) = 42 hence 42 belongs to this sequence.
MAPLE
b:= n-> `if`(n=1, 1, mul(`if`(i[1]=2, 3, `if`(i[1]=3,
2, i[1]))^b(i[2]), i=ifactors(n)[2])):
select(n-> n=b(n), [$1..200])[]; # Alois P. Heinz, Mar 17 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Rémy Sigrist, Mar 17 2018
STATUS
approved