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!)
A130909 Simple periodic sequence (n mod 16). 7

%I #8 Jan 19 2023 02:16:07

%S 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,

%T 13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,

%U 10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9

%N Simple periodic sequence (n mod 16).

%C The value of the rightmost digit in the base-16 representation of n. Also, the equivalent value of the two rightmost digits in the base-4 representation of n. Also, the equivalent value of the four rightmost digits in the base-2 representation of n.

%H <a href="/index/Rec#order_16">Index entries for linear recurrences with constant coefficients</a>, signature (0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1).

%F a(n)=n mod 16 =n-16*floor(n/16). - G.f.: g(x)=(sum{1<=k<16, k*x^k})/(1-x^16). Also: g(x)=x(15x^16-16x^15+1)/((1-x^16)(1-x)^2).

%F a(n)=A000035(n)+2*A010877(A004526(n).

%F a(n)=A010873(n)+4*A010873(A002265(n)).

%F a(n)=A010877(n)+8*A000035(floor(n/8)).

%F a(n) = (1/2)*(15 - ( - 1)^n - 2*( - 1)^(b/4) - 4*( - 1)^((b - 2 + 2*( - 1)^(b/4))/8) - 8*( - 1)^((b - 6 + ( - 1)^n + 2*( - 1)^(b/4) + 4*( - 1)^((b - 2 + 2*( - 1)^(b/4))/8))/16)) where b = 2n - 1 + ( - 1)^n. - _Hieronymus Fischer_, Jun 14 2007

%F a(n)=n mod 2+2*(floor(n/2)mod 2)+4*(floor(n/4)mod 2)+8*(floor(n/8)mod 2). - _Hieronymus Fischer_, Jun 14 2007

%F a(n)=(1/2)*(15-(-1)^n-2*(-1)^floor(n/2)-4*(-1)^floor(n/4)-8*(-1)^floor(n/= 8)). - _Hieronymus Fischer_, Jun 14 2007

%F Complex representation: a(n)=(1/16)*(1-r^n)*sum{1<=k<16, k*product{1<=m<16,m<>k, (1-r^(n-m))}} where r=exp(pi/8*i)=(sqrt(2+sqrt(2))+i*sqrt(2-sqrt(2)))/2 and i=sqrt(-1). - _Hieronymus Fischer_, Jun 14 2007

%F Trigonometric representation: a(n)=2^22*(sin(n*pi/16))^2*sum{1<=k<16, k*product{1<=m<16,m<>k, (sin((n-m)*pi/16))^2}}. - _Hieronymus Fischer_, Jun 14 2007

%F a(n)=(1/2)*(15-(-1)^p(0,n)-2*(-1)^p(1,n)-4*(-1)^p(2,n)-8*(-1)^p(3,n)) where p(k,n) is defined recursively by p(0,n)=n, p(k,n)=1/4*(2*p(k-1,n)-1+(-1)^p(k-1,n)). - _Hieronymus Fischer_, Jun 14 2007

%o (PARI) a(n)=n%16 \\ _Charles R Greathouse IV_, Jul 13 2016

%o (Python)

%o def A130909(n): return n&15 # _Chai Wah Wu_, Jan 18 2023

%Y Cf. partial sums A130910. Other related sequences A010872, A010873, A130481, A130482, A130483, A130486.

%Y See A010877 for a general formula in terms of powers of -1 (for period 2^k).

%K nonn,easy

%O 0,3

%A _Hieronymus Fischer_, Jun 11 2007, Jun 13 2007

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 14:49 EDT 2024. Contains 371914 sequences. (Running on oeis4.)