A139387
First gap of length at least n in A007951, lower end.
Original entry on oeis.org
2, 11, 133, 497, 4963, 34486, 68978, 14877929, 6186632564, 6186632564
Offset: 1
First few terms of A007951 are 1,2,4,5,7,8,10,11,14,16, ... . The first gap of length 1 is between 2 and 4, so a(1) = 2; the first gap of length 2 is between 11 and 14, so a(2) = 11.
A007606
Take 1, skip 2, take 3, etc.
Original entry on oeis.org
1, 4, 5, 6, 11, 12, 13, 14, 15, 22, 23, 24, 25, 26, 27, 28, 37, 38, 39, 40, 41, 42, 43, 44, 45, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 137, 138
Offset: 1
From _Omar E. Pol_, Aug 29 2018: (Start)
Written as an irregular triangle in which the row lengths are the odd numbers the sequence begins:
1;
4, 5, 6;
11, 12, 13, 14, 15;
22, 23, 24, 25, 26, 27, 28;
37, 38, 39, 40, 41, 42, 43, 44, 45;
56, 57, 58, 59, 60, 61, 62 , 63, 64, 65, 66;
79, 80, 81, 82 , 83, 84, 85, 86, 87, 88, 89, 90, 91;
106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120;
...
Row sums give A005917.
Column 1 gives A084849.
Column 2 gives A096376, n >= 1.
Right border gives A000384, n >= 1.
(End)
- C. Dumitrescu & V. Seleacu, editors, Some Notions and Questions in Number Theory, Vol. I, Erhus Publ., Glendale, 1994.
- R. Honsberger, Mathematical Gems III, M.A.A., 1985, p. 177.
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
- F. Smarandache, Properties of Numbers, 1972.
-
a007606 n = a007606_list !! (n-1)
a007606_list = takeSkip 1 [1..] where
takeSkip k xs = take k xs ++ takeSkip (k + 2) (drop (2*k + 1) xs)
-- Reinhard Zumkeller, Feb 12 2011
-
Flatten[ Table[i, {j, 1, 17, 2}, {i, j(j - 1)/2 + 1, j(j + 1)/2}]] (* Robert G. Wilson v, Mar 11 2004 *)
Join[{1},Flatten[With[{nn=20},Range[#[[1]],Total[#]]&/@Take[Thread[ {Accumulate[ Range[nn]]+1,Range[nn]}],{2,-1,2}]]]] (* Harvey P. Dale, Jun 23 2013 *)
With[{nn=20},Take[TakeList[Range[(nn(nn+1))/2],Range[nn]],{1,nn,2}]]//Flatten (* Harvey P. Dale, Feb 10 2023 *)
-
for(n=1,66,m=sqrtint(n-1);print1(n+m*(m+1),","))
A007950
Binary sieve: delete every 2nd number, then every 4th, 8th, etc.
Original entry on oeis.org
1, 3, 5, 9, 11, 13, 17, 21, 25, 27, 29, 33, 35, 37, 43, 49, 51, 53, 57, 59, 65, 67, 69, 73, 75, 77, 81, 85, 89, 91, 97, 101, 107, 109, 113, 115, 117, 121, 123, 129, 131, 133, 137, 139, 145, 149, 153, 155, 157, 161, 163, 165, 171, 173, 177, 179, 181, 185, 187, 195, 197
Offset: 1
- F. Smarandache, Properties of Numbers, 1972.
- T. D. Noe, Table of n, a(n) for n = 1..10000
- C. Dumitrescu & V. Seleacu, editors, Some Notions and Questions in Number Theory, Vol. I.
- F. Smarandache, Only Problems, Not Solutions!, 4th ed., 1993, Problem 95.
- Index entries for sequences generated by sieves
-
t = Range@200; f[n_] := Block[{k = 2^n}, t = Delete[t, Table[{k}, {k, k, Length@t, k}]]]; Do[ f@n, {n, 6}]; t (* Robert G. Wilson v, Sep 14 2006 *)
A048859
A sieve: keep the first 2 numbers, delete the next 3 numbers; keep the next 3 numbers, delete the next 4 numbers; keep the next 4 numbers, delete the next 5 numbers; and so on. In other words, keep the next k numbers and delete the next k+1 numbers, for k = 2, 3, ...
Original entry on oeis.org
1, 2, 6, 7, 8, 13, 14, 15, 16, 22, 23, 24, 25, 26, 33, 34, 35, 36, 37, 38, 46, 47, 48, 49, 50, 51, 52, 61, 62, 63, 64, 65, 66, 67, 68, 78, 79, 80, 81, 82, 83, 84, 85, 86, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128
Offset: 1
Charles T. Le (charlestle(AT)yahoo.com)
List the natural numbers: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, ...
Keep the first two numbers 1, 2 and delete the next three numbers 3, 4, 5.
Keep the next three numbers 6, 7, 8 and delete the next four numbers 9, 10, 11, 12. And so on.
- C. Dumitrescu & V. Seleacu, editors, Some Notions and Questions in Number Theory, Vol. I, Erhus Publ., Glendale, 1994.
- M. Le, On the Smarandache n-ary Sieve, Smarandache Notions Journal, Vol. 10, No. 1-2-3, 1999, 146-147.
- F. Smarandache, Properties of Numbers, 1972.
-
a048859 n = a048859_list !! (n-1)
a048859_list = f 2 [1..] where
f k xs = us ++ f (k + 1) (drop (k + 1) vs)
where (us, vs) = splitAt k xs
-- Reinhard Zumkeller, May 16 2014
-
ss[n_]:=Module[{c=n^2+4n+1},Range[c,c+n+1]]; Flatten[Array[ss,10,0]] (* Harvey P. Dale, Sep 10 2014 *)
Corrected and revised by the author, Mar 24 2004
A092418
A sieve: starting with the sequence of positive integers, delete every 4th number, then delete every 16th number from the remaining sequence, then delete every 64th number, etc. Sequence gives the remaining numbers.
Original entry on oeis.org
1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 14, 15, 17, 18, 19, 22, 23, 25, 26, 27, 29, 30, 31, 33, 34, 35, 37, 38, 39, 41, 43, 45, 46, 47, 49, 50, 51, 53, 54, 55, 57, 58, 59, 61, 62, 65, 66, 67, 69, 70, 71, 73, 74, 75, 77, 78, 79, 81, 82, 83, 86, 87, 89, 91, 93, 94, 95, 97, 98, 99, 101, 102
Offset: 1
Charles T. Le (charlestle(AT)yahoo.com), Mar 22 2004
- C. Dumitrescu & V. Seleacu, editors, Some Notions and Questions in Number Theory, Vol. I, Erhus Publ., Glendale, 1994.
- Florentin Smarandache, Properties of Numbers, 1972.
Showing 1-5 of 5 results.
Comments