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!)
A116623 a(0)=1, a(2n) = a(n)+A000079(A000523(2n)), a(2n+1) = 3*a(n) + A000079(A000523(2n+1)+1). 7

%I #16 Dec 14 2023 15:39:00

%S 1,5,7,19,11,29,23,65,19,49,37,103,31,85,73,211,35,89,65,179,53,143,

%T 119,341,47,125,101,287,89,251,227,665,67,169,121,331,97,259,211,601,

%U 85,223,175,493,151,421,373,1087,79,205,157,439,133,367,319,925,121

%N a(0)=1, a(2n) = a(n)+A000079(A000523(2n)), a(2n+1) = 3*a(n) + A000079(A000523(2n+1)+1).

%C Viewed as a binary tree, this is (1); 5; 7,19; 11,29,23,65; ... Related to the parity vectors of Collatz and Terras trajectories.

%H <a href="/index/3#3x1">Index entries for sequences related to 3x+1 (or Collatz) problem</a>

%p A116623 := proc(n)

%p option remember;

%p if n = 0 then

%p 1;

%p elif type(n,'even') then

%p procname(n/2)+2^A000523(n) ;

%p else

%p 3*procname(floor(n/2))+2^(1+A000523(n)) ;

%p end if;

%p end proc: # _R. J. Mathar_, Nov 28 2016

%t a[n_] := a[n] = Which[n == 0, 1, EvenQ[n], a[n/2] + 2^Floor@Log2[n], True, 3a[Floor[n/2]] + 2^(1 + Floor@Log2[n])];

%t Table[a[n], {n, 0, 56}] (* _Jean-François Alcover_, Sep 01 2023 *)

%o (MIT/GNU Scheme)

%o (define (A116623 n) (cond ((zero? n) 1) ((even? n) (+ (A116623 (/ n 2)) (expt 2 (A000523 n)))) (else (+ (* 3 (A116623 (/ (- n 1) 2))) (expt 2 (+ 1 (A000523 n)))))))

%Y Cf. a(n) = A116640(A059893(n)). a(A000225(n)) = A001047(n+1). For n>= 1 a(A000079(n)) = A062709(n+1). A116641 gives the terms in ascending order and without duplicates.

%K nonn,tabf

%O 0,2

%A _Antti Karttunen_, Feb 20 2006. Proposed by Pierre Lamothe (plamothe(AT)aei.ca), May 21 2004.

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 July 30 10:28 EDT 2024. Contains 374742 sequences. (Running on oeis4.)