# Greetings from The On-Line Encyclopedia of Integer Sequences! http://oeis.org/ Search: id:a010875 Showing 1-1 of 1 %I A010875 #82 Sep 08 2022 08:44:37 %S A010875 0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3, %T A010875 4,5,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,0,1, %U A010875 2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,0 %N A010875 a(n) = n mod 6. %C A010875 Period 6: repeat [0, 1, 2, 3, 4, 5]. %C A010875 The rightmost digit in the base-6 representation of n. - _Hieronymus Fischer_, Jun 11 2007 %C A010875 [a(n) * a(m)] mod 6 == a(n*m mod 6) == a(n*m). - _Jon Perry_, Nov 11 2014 %C A010875 If n > 3 and (a(n) is in {0,2,3,4}), then n is not prime. - _Jean-Marc Rebert_, Jul 22 2015, corrected by _M. F. Hasler_, Jul 24 2015 %H A010875 Antti Karttunen, Table of n, a(n) for n = 0..65538 %H A010875 Index entries for linear recurrences with constant coefficients, signature (0,0,0,0,0,1). %F A010875 Complex representation: a(n) = (1/6) * (1 - r^n) * Sum_{k = 1..6} k * Product_{1 <= m < 6, m <> k} (1-r^(n-m)), where r = exp((Pi/3)*i) = (1 + sqrt(3)*i)/2 and i = sqrt(-1). %F A010875 Trigonometric representation: a(n) = (16/3)^2 * (sin(n*Pi/6))^2 * Sum_{k = 1..6} k * Product_{1 <= m < 6, m<>k} (sin((n-m)*Pi/6))^2. %F A010875 G.f.: g(x) = (Sum_{k = 1..6} k*x^k)/(1-x^6). %F A010875 Also: g(x) = x*(5*x^6 - 6*x^5 + 1)/((1 - x^6)*(1 - x)^2). - _Hieronymus Fischer_, May 31 2007 %F A010875 a(n) = (n mod 2) + 2(floor(n/2) mod 3) = A000035(n) +2*A010872(A004526(n)); %F A010875 a(n) = (n mod 3) + 3(floor(n/3) mod 2) = A010872(n) +3*A000035(A002264(n)). - _Hieronymus Fischer_, Jun 11 2007 %F A010875 a(n) = 2.5 - 0.5*(-1)^n - cos(Pi*n/3) - 3^0.5*sin(Pi*n/3) -cos(2*Pi*n/3) - 3^0.5/3*sin(2*Pi*n/3). - _Richard Choulet_, Dec 11 2008 %F A010875 a(n) = n^3 mod 6. - _Zerinvary Lajos_, Oct 29 2009 %F A010875 a(n) = floor(12345/999999*10^(n+1)) mod 10. - _Hieronymus Fischer_, Jan 03 2013 %F A010875 a(n) = floor(373/9331*6^(n+1)) mod 6. - _Hieronymus Fischer_, Jan 04 2013 %F A010875 a(n) = 5/2 - (-1)^n/2 - 2*0^((-1)^(n/6 - 1/12 + (-1)^n/12) - (-1)^(n/2 - 1/4 +(-1)^n/4)) + 2*0^((-1)^(n/6 + 1/4 + (-1)^n/12) + (-1)^(n/2 - 1/4 + (-1)^n/4)). - _Wesley Ivan Hurt_, Jun 23 2015 %F A010875 E.g.f.: -sqrt(3)*exp(x/2)*sin(sqrt(3)*x/2) - 2*cosh(x/2)*cos(sqrt(3)*x/2). - _Robert Israel_, Jul 22 2015 %p A010875 A010875:=n->n mod 6; seq(A010875(n), n=0..100); # _Wesley Ivan Hurt_, Jul 06 2014 %t A010875 Mod[Range[0, 100], 6] (* _Wesley Ivan Hurt_, Jul 06 2014 *) %o A010875 (Sage) [power_mod(n,3,6 )for n in range(0, 81)] # _Zerinvary Lajos_, Oct 29 2009 %o A010875 (PARI) a(n)=n%6 \\ _Charles R Greathouse IV_, Dec 05 2011 %o A010875 (Magma) [n mod 6: n in [0..100]]; // _Wesley Ivan Hurt_, Jul 06 2014 %o A010875 (Scheme) (define (A010875 n) (modulo n 6)) ;; _Antti Karttunen_, Dec 22 2017 %Y A010875 Partial sums: A130484. Other related sequences A130481, A130482, A130483, A130485. %Y A010875 Cf. also A079979, A097325, A122841. %K A010875 nonn,easy %O A010875 0,3 %A A010875 _N. J. A. Sloane_ %E A010875 Formulas 1 to 6 re-edited for better readability by _Hieronymus Fischer_, Dec 05 2011 %E A010875 More terms from _Antti Karttunen_, Dec 22 2017 # Content is available under The OEIS End-User License Agreement: http://oeis.org/LICENSE