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!)
A292598 a(n) is the number of odd primes in the sequence [n, floor(n/2), floor(n/4), ..., 1]. 4
0, 0, 1, 0, 1, 1, 2, 0, 0, 1, 2, 1, 2, 2, 2, 0, 1, 0, 1, 1, 1, 2, 3, 1, 1, 2, 2, 2, 3, 2, 3, 0, 0, 1, 1, 0, 1, 1, 1, 1, 2, 1, 2, 2, 2, 3, 4, 1, 1, 1, 1, 2, 3, 2, 2, 2, 2, 3, 4, 2, 3, 3, 3, 0, 0, 0, 1, 1, 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 3, 1, 1, 2, 2, 2, 3, 2, 2, 3, 3, 4, 4, 1, 2, 1, 1, 1, 2, 1, 2, 2, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,7
LINKS
FORMULA
a(1) = a(2) = 0; for n > 2, a(n) = A010051(n) + a(floor(n/2)).
a(n) = A000120(A292596(n)).
For all n >= 1, a(n) <= A078349(n).
PROG
(Scheme, with memoization-macro definec)
(definec (A292598 n) (if (<= n 2) 0 (+ (A010051 n) (A292598 (floor->exact (/ n 2))))))
CROSSREFS
Sequence in context: A049321 A204425 A245187 * A079113 A144874 A333365
KEYWORD
nonn
AUTHOR
Antti Karttunen, Sep 27 2017
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 10 09:28 EDT 2024. Contains 372377 sequences. (Running on oeis4.)