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!)
A236833 a(n) = number of times n occurs in A234741. 9
1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 4, 1, 1, 2, 1, 1, 2, 1, 0, 1, 2, 1, 2, 2, 1, 1, 1, 4, 1, 1, 1, 1, 3, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 0, 4, 1, 2, 2, 0, 1, 3, 2, 1, 2, 1, 1, 1, 1, 2, 1, 1, 4, 1, 1, 2, 1, 1, 1, 4, 1, 1, 3, 1, 2, 1, 1, 3, 1, 6, 1, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
Number of distinct values k such that A234741(k) = n.
LINKS
FORMULA
a(2n) = a(n).
This should also have a direct formula, mirroring the formula for A236853. Cf. also A236861.
PROG
(Scheme, counting cases empirically with a naive loop. A234742 gives an absolute upper bound for any inverse of A234741):
(define (A236833 n) (let ((u (A234742 n))) (let loop ((k n) (ntimes 0)) (cond ((> k u) ntimes) ((= (A234741 k) n) (loop (+ k 1) (+ ntimes 1))) (else (loop (+ k 1) ntimes))))))
CROSSREFS
A236834 gives the positions of zeros, A236835 the positions of terms larger than one, A236841 the positions of terms other than zero.
Sequence in context: A277873 A032542 A107038 * A328511 A371245 A043278
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 31 2014
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 24 03:08 EDT 2024. Contains 371918 sequences. (Running on oeis4.)