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!)
A277314 Number of nonzero coefficients in Stern polynomial B(n,t). 5

%I #16 Oct 13 2016 10:30:20

%S 0,1,1,2,1,2,2,3,1,3,2,3,2,3,3,4,1,4,3,3,2,3,3,4,2,4,3,4,3,4,4,5,1,5,

%T 4,4,3,4,3,4,2,4,3,4,3,4,4,5,2,5,4,4,3,4,4,5,3,5,4,5,4,5,5,6,1,6,5,5,

%U 4,5,4,5,3,5,4,4,3,4,4,5,2,5,4,4,3,4,4,5,3,5,4,5,4,5,5,6,2,6,5,5,4,5,4,5,3,5,4,5,4,5,5,6,3,6,5,5,4,5,5,6,4

%N Number of nonzero coefficients in Stern polynomial B(n,t).

%C a(n) is the number of nonzero terms on row n of A125184.

%H Antti Karttunen, <a href="/A277314/b277314.txt">Table of n, a(n) for n = 0..8192</a>

%F a(n) = A001221(A260443(n)).

%F a(n) = A069010(A277020(n)).

%F a(n) = 1 + A243055(A260443(n)). [Because each term of A260443 is in A073491.]

%F a(2n) = a(n).

%F For all n >= 0 , a(n) <= A002487(n).

%o (Scheme)

%o (define (A277314 n) (A001221 (A260443 n)))

%o ;; Or as a standalone program:

%o (define (A277314 n) (length (filter positive? (A260443as_coeff_list n))))

%o (definec (A260443as_coeff_list n) (cond ((zero? n) (list)) ((= 1 n) (list 1)) ((even? n) (cons 0 (A260443as_coeff_list (/ n 2)))) (else (add_two_lists (A260443as_coeff_list (/ (- n 1) 2)) (A260443as_coeff_list (/ (+ n 1) 2))))))

%o (define (add_two_lists nums1 nums2) (let ((len1 (length nums1)) (len2 (length nums2))) (cond ((< len1 len2) (add_two_lists nums2 nums1)) (else (map + nums1 (append nums2 (make-list (- len1 len2) 0)))))))

%Y Cf. A001221, A002487, A069010, A073491, A125184, A243055, A260443, A277020.

%K nonn

%O 0,4

%A _Antti Karttunen_, Oct 10 2016

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 23 11:35 EDT 2024. Contains 371912 sequences. (Running on oeis4.)