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!)
A162699 Odd numbers not divisible by 7. 7
1, 3, 5, 9, 11, 13, 15, 17, 19, 23, 25, 27, 29, 31, 33, 37, 39, 41, 43, 45, 47, 51, 53, 55, 57, 59, 61, 65, 67, 69, 71, 73, 75, 79, 81, 83, 85, 87, 89, 93, 95, 97, 99, 101, 103, 107, 109, 111, 113, 115, 117, 121, 123, 125, 127, 129, 131, 135, 137, 139, 141, 143, 145, 149 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Numbers coprime to 14. The asymptotic density of this sequence is 3/7. - Amiram Eldar, Oct 18 2020
LINKS
FORMULA
a(n) = 2*n + 1 + 2*floor( (2*n-7)/12 ).
a(n) = a(n-1)+a(n-6)-a(n-7). G.f.: x*(x^2+1)*(x^4+2*x^3+x^2+2*x+1)/ ((1+x)*(1+x+x^2)*(x^2-x+1)*(x-1)^2). - R. J. Mathar, Jul 31 2009
MATHEMATICA
s={}; Do[If[Mod[n, 7] > 0, AppendTo[s, n]], {n, 1, 60, 2}]; s
Table[2 n + 1 + 2*Floor[(2 n - 7)/12], {n, 1, 99}]
DeleteCases[Range[1, 151, 2], _?(Divisible[#, 7]&)] (* Harvey P. Dale, Jul 04 2015 *)
PROG
(PARI) a(n)=(14*n-7)\12*2+1 \\ Charles R Greathouse IV, Jun 11 2015
CROSSREFS
Cf. A045572 (odd numbers not divisible by 5).
Sequence in context: A309135 A088607 A296243 * A325129 A368603 A173263
KEYWORD
nonn,easy
AUTHOR
Zak Seidov, Jul 11 2009
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 April 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)