A268390 Products of an even number of distinct primes and the square of a number in the sequence (including 1).
1, 6, 10, 14, 15, 21, 22, 26, 33, 34, 35, 36, 38, 39, 46, 51, 55, 57, 58, 62, 65, 69, 74, 77, 82, 85, 86, 87, 91, 93, 94, 95, 100, 106, 111, 115, 118, 119, 122, 123, 129, 133, 134, 141, 142, 143, 145, 146, 155, 158, 159, 161, 166, 177, 178, 183, 185, 187, 194, 196, 201, 202, 203, 205, 206, 209, 210
Offset: 1
Examples
1 has an empty factorization, and as XOR of an empty set is zero, 1 is included. 6 = 2^1 * 3^1 and as XOR(1,1) = 0, 6 is included. 30 = 2^1 * 3^1 * 5^1 is NOT included, as XOR(1,1,1) = 1. 360 = 2^3 * 3^2 * 5^1 is included, as the bitwise-XOR of exponents 3, 2 and 1 ("11", "10" and "01" in binary) results zero. 10, 15, 36 and 216 are in A238748. 360 = A059897(10, 36) = A059897(15, 216) and 540 = A059897(15, 36) = A059897(10, 216). So 360 and 540 are in the closure of A238748 under A059897(.,.), so in this sequence although absent from A238748. - _Peter Munn_, Oct 30 2019
Links
- Antti Karttunen, Table of n, a(n) for n = 1..10000
- OEIS Wiki, Ideal.
- Eric Weisstein's World of Mathematics, Closure, Group, Left Transversal, Right Transversal, Square part, Squarefree part.
Crossrefs
Programs
-
Mathematica
Select[Range[200], # == 1 || BitXor @@ Last /@ FactorInteger[#] == 0 &] (* Amiram Eldar, Nov 27 2020 *)
Formula
From Peter Munn, Oct 30 2019: (Start)
For k >= 0, prime p_1, prime p_2, {m : m = A059897(p_1^k, a(n)), n >= 1} = {m : m = A059897(p_2^k, a(n)), n >= 1}.
(End)
From Peter Munn, Nov 24 2021: (Start)
{a(n) : n >= 1} = {A000188(a(n)) : n >= 1}.
(End)
Extensions
New name from Peter Munn, Jul 15 2024
Comments