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!)
A256290 Numbers which have only digits 4 and 5 in base 10. 17

%I #13 Jul 15 2023 18:28:14

%S 4,5,44,45,54,55,444,445,454,455,544,545,554,555,4444,4445,4454,4455,

%T 4544,4545,4554,4555,5444,5445,5454,5455,5544,5545,5554,5555,44444,

%U 44445,44454,44455,44544,44545,44554,44555,45444,45445,45454,45455,45544

%N Numbers which have only digits 4 and 5 in base 10.

%H Vincenzo Librandi, <a href="/A256290/b256290.txt">Table of n, a(n) for n = 1..8190</a>

%H <a href="/index/Ar#10-automatic">Index entries for 10-automatic sequences</a>.

%F a(n) = A007931(n) + A002277(A000523(n+1)) = A032834(n) + A256077(n) etc.

%t Flatten[Table[FromDigits[#,10]&/@Tuples[{4,5},n],{n,5}]]

%o (Magma) [n: n in [1..60000] | Set(IntegerToSequence(n, 10)) subset {5, 4}];

%o (PARI) A256290(n)=vector(#n=binary(n+1)[2..-1],i,10^(#n-i))*n~+10^#n\9*4

%o (Magma) [n: n in [1..100000] | Set(Intseq(n)) subset {4,5}]; // _Vincenzo Librandi_, Aug 19 2016

%o (Python)

%o def A256290(n): return int(bin(n+1)[3:])+(10**((n+1).bit_length()-1)-1<<2)//9 # _Chai Wah Wu_, Jul 15 2023

%Y Cf. A007088 (digits 0 & 1), A007931 (digits 1 & 2), A032810 (digits 2 & 3), A032834 (digits 3 & 4), A256291 (digits 5 & 6), A256292 (digits 6 & 7), A256340 (digits 7 & 8), A256341 (digits 8 & 9).

%K nonn,base,easy

%O 1,1

%A _M. F. Hasler_, Mar 27 2015

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 16 07:08 EDT 2024. Contains 371698 sequences. (Running on oeis4.)