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!)
A033847 Numbers whose prime factors are 2 and 7. 19
14, 28, 56, 98, 112, 196, 224, 392, 448, 686, 784, 896, 1372, 1568, 1792, 2744, 3136, 3584, 4802, 5488, 6272, 7168, 9604, 10976, 12544, 14336, 19208, 21952, 25088, 28672, 33614, 38416, 43904, 50176, 57344, 67228, 76832, 87808, 100352, 114688 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers k such that phi(k) = (3/7)*k - Benoit Cloitre, Apr 19 2002
Subsequence of A143204. - Reinhard Zumkeller, Sep 13 2011
LINKS
FORMULA
A143201(a(n)) = 6. - Reinhard Zumkeller, Sep 13 2011
Sum_{n>=1} 1/a(n) = 1/6. - Amiram Eldar, Dec 22 2020
MATHEMATICA
With[{nn=20}, Select[Union[Flatten[Table[2^n 7^k, {n, nn}, {k, nn}]]], #<=2^nn 7&]] (* Harvey P. Dale, Nov 25 2020 *)
PROG
(Haskell)
import Data.Set (singleton, deleteFindMin, insert)
a033847 n = a033847_list !! (n-1)
a033847_list = f (singleton (2*7)) where
f s = m : f (insert (2*m) $ insert (7*m) s') where
(m, s') = deleteFindMin s
-- Reinhard Zumkeller, Sep 13 2011
CROSSREFS
Sequence in context: A033011 A321371 A077265 * A067295 A212890 A019552
KEYWORD
nonn
AUTHOR
EXTENSIONS
Offset fixed by Reinhard Zumkeller, Sep 13 2011
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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)