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!)
A278043 Number of 1's in tribonacci representation of n (cf. A278038). 11

%I #23 Jul 07 2022 02:30:48

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

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

%U 2,3,3,4,3,4,4,3,4,4,5,4,5,1,2,2,3,2,3,3,2,3,3,4,3,4,2,3,3,4,3,4

%N Number of 1's in tribonacci representation of n (cf. A278038).

%H N. J. A. Sloane, <a href="/A278043/b278043.txt">Table of n, a(n) for n = 0..20000</a>

%F a(n) = A000120(A003726(n+1)). - _John Keith_, May 23 2022

%t t[1] = 1; t[2] = 2; t[3] = 4; t[n_] := t[n] = t[n - 1] + t[n - 2] + t[n - 3]; a[0] = 0; a[n_] := Module[{s = {}, m = n, k}, While[m > 0, k = 1; While[t[k] <= m, k++]; k--; AppendTo[s, k]; m -= t[k]; k = 1]; DigitCount[Total[2^(s - 1)], 2, 1]]; Array[a, 100, 0] (* _Amiram Eldar_, Mar 04 2022 *)

%Y Cf. A001590, A003726, A007895, A278038, A278042, A278044.

%K nonn,base

%O 0,4

%A _N. J. A. Sloane_, Nov 18 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 19 15:03 EDT 2024. Contains 371794 sequences. (Running on oeis4.)