This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A033850 #22 Mar 01 2023 17:31:52 %S A033850 21,63,147,189,441,567,1029,1323,1701,3087,3969,5103,7203,9261,11907, %T A033850 15309,21609,27783,35721,45927,50421,64827,83349,107163,137781,151263, %U A033850 194481,250047,321489,352947,413343,453789,583443,750141,964467 %N A033850 Numbers whose prime factors are 3 and 7. %C A033850 Numbers k such that phi(k)/k = 4/7, where phi is the Euler totient function A000010. - _Lekraj Beedassy_, Jul 18 2008 %C A033850 Subsequence of A143203. - _Reinhard Zumkeller_, Sep 13 2011 %D A033850 J.-M. De Koninck, Ces nombres qui nous fascinent, Entry 189, p. 57, Ellipses, Paris 2008. %H A033850 Reinhard Zumkeller, <a href="/A033850/b033850.txt">Table of n, a(n) for n = 1..10000</a> %F A033850 A143201(a(n)) = 5. - _Reinhard Zumkeller_, Sep 13 2011 %F A033850 Sum_{n>=1} 1/a(n) = 1/12. - _Amiram Eldar_, Dec 22 2020 %t A033850 Select[Range[10^6],Union[FactorInteger[#][[;;,1]]]=={3,7}&] (* _Harvey P. Dale_, Mar 01 2023 *) %o A033850 (Haskell) %o A033850 import Data.Set (singleton, deleteFindMin, insert) %o A033850 a033850 n = a033850_list !! (n-1) %o A033850 a033850_list = f (singleton (3*7)) where %o A033850 f s = m : f (insert (3*m) $ insert (7*m) s') where %o A033850 (m,s') = deleteFindMin s %o A033850 -- _Reinhard Zumkeller_, Sep 13 2011 %Y A033850 Cf. A000010, A033845, A033846, A033847, A033848, A033849, A033851, A143203. %K A033850 nonn %O A033850 1,1 %A A033850 _Jeff Burch_ %E A033850 Offset fixed by _Reinhard Zumkeller_, Sep 13 2011