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!)
A033851 Numbers whose prime factors are 5 and 7. 14
35, 175, 245, 875, 1225, 1715, 4375, 6125, 8575, 12005, 21875, 30625, 42875, 60025, 84035, 109375, 153125, 214375, 300125, 420175, 546875, 588245, 765625, 1071875, 1500625, 2100875, 2734375, 2941225, 3828125, 4117715, 5359375, 7503125 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers k such that phi(k)/k == 24/35. - Artur Jasinski, Nov 09 2008
Subsequence of A143202. - Reinhard Zumkeller, Sep 13 2011
LINKS
FORMULA
a(n) = 35*A003595(n). - Artur Jasinski, Nov 09 2008
A143201(a(n)) = 3. - Reinhard Zumkeller, Sep 13 2011
Sum_{n>=1} 1/a(n) = 1/24. - Amiram Eldar, Dec 22 2020
MATHEMATICA
a = {}; Do[If[EulerPhi[x]/x == 24/35, AppendTo[a, x]], {x, 1, 10000}]; a (* Artur Jasinski, Nov 09 2008 *)
Take[With[{nn=10}, Sort[Flatten[Table[5^i 7^j, {i, nn}, {j, nn}]]]], 40] (* Harvey P. Dale, Feb 09 2013 *)
PROG
(Haskell)
import Data.Set (singleton, deleteFindMin, insert)
a033851 n = a033851_list !! (n-1)
a033851_list = f (singleton (5*7)) where
f s = m : f (insert (5*m) $ insert (7*m) s') where
(m, s') = deleteFindMin s
-- Reinhard Zumkeller, Sep 13 2011
CROSSREFS
Subsequence of A256617.
Sequence in context: A228453 A327651 A319042 * A219825 A194716 A220047
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 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)