The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A264164 3-smooth numbers whose number of divisors is not 3-smooth. 2
16, 48, 64, 81, 144, 162, 192, 324, 432, 512, 576, 648, 729, 1024, 1296, 1458, 1536, 1728, 2592, 2916, 3072, 3888, 4096, 4608, 5184, 5832, 8192, 9216, 10368, 11664, 12288, 13824, 15552, 16384, 19683, 20736, 23328, 24576, 27648, 34992, 36864, 39366, 41472 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
A065333(a(n)) * (1 - A065333(A000005(a(n)))) = 1.
EXAMPLE
a(12) = 648 = 2^3*3^4 = A003586(36) and A000005(648) = 20 = 2^2*5;
a(13) = 729 = 3^6 = A003586(37) and A000005(729) = 7;
but A003586(38) = 768 = 2^8*3 is not a term, as A000005(768) = 18 = 2*3^2.
MATHEMATICA
smQ[n_] := n == Times @@ ({2, 3}^IntegerExponent[n, {2, 3}]);
seq[max_] := Sort@ Flatten@ Table[If[smQ[i + 1] && smQ[j + 1], Nothing, 2^i * 3^j], {i, 0 , Log2[max]}, {j, 0, Log[3, max/2^i]}]; seq[42000] (* Amiram Eldar, Sep 03 2023 *)
PROG
(Haskell)
a264164 n = a264164_list !! (n-1)
a264164_list = filter ((== 0) . a065333 . a000005') a003586_list
CROSSREFS
Cf. A000005, A003586, A065333, A264165 (complement with respect to A003586).
Sequence in context: A260985 A322448 A354181 * A045047 A239344 A195087
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Nov 19 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 23 22:02 EDT 2024. Contains 372765 sequences. (Running on oeis4.)