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!)
A047249 Numbers that are congruent to {3, 4, 5} mod 6. 1
3, 4, 5, 9, 10, 11, 15, 16, 17, 21, 22, 23, 27, 28, 29, 33, 34, 35, 39, 40, 41, 45, 46, 47, 51, 52, 53, 57, 58, 59, 63, 64, 65, 69, 70, 71, 75, 76, 77, 81, 82, 83, 87, 88, 89, 93, 94, 95, 99, 100, 101, 105, 106, 107, 111, 112, 113, 117, 118, 119, 123, 124 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
G.f.: x*(3+x+x^2+x^3) / ((1+x+x^2)*(x-1)^2). - R. J. Mathar, Oct 08 2011
From Wesley Ivan Hurt, Jun 10 2016: (Start)
a(n) = a(n-1) + a(n-3) - a(n-4) for n>4.
a(n) = 2*n-cos(2*n*Pi/3)+sin(2*n*Pi/3)/sqrt(3).
a(3k) = 6k-1, a(3k-1) = 6k-2, a(3k-2) = 6k-3. (End)
Sum_{n>=1} (-1)^(n+1)/a(n) = (9-2*sqrt(3))*Pi/36 + log(2)/6 - log(2+sqrt(3))/(2*sqrt(3)). - Amiram Eldar, Dec 16 2021
MAPLE
A047249:=n->2*n-cos(2*n*Pi/3)+sin(2*n*Pi/3)/sqrt(3): seq(A047249(n), n=1..100); # Wesley Ivan Hurt, Jun 10 2016
MATHEMATICA
Select[Range[150], MemberQ[{3, 4, 5}, Mod[#, 6]]&] (* Harvey P. Dale, Nov 21 2012 *)
PROG
(Magma) [n : n in [0..150] | n mod 6 in [3..5]]; // Wesley Ivan Hurt, Jun 10 2016
CROSSREFS
Sequence in context: A285161 A329781 A139531 * A327257 A228941 A236211
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

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 March 29 00:26 EDT 2024. Contains 371264 sequences. (Running on oeis4.)