A103951 Procedure "Remove every 10th term!" executed 10 times.
1, 2, 3, 4, 5, 6, 7, 8, 9, 21, 23, 25, 27, 29, 32, 35, 38, 42, 46, 49, 51, 54, 56, 59, 62, 65, 68, 72, 75, 76, 79, 83, 84, 87, 92, 93, 96, 102, 103, 105, 106, 113, 114, 116, 117, 125, 126, 128, 129, 137, 138, 139, 142, 143, 152, 153, 154, 157, 158, 162, 168, 169, 171
Offset: 1
Keywords
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Crossrefs
Cf. A067251.
Programs
-
Mathematica
ra=Range[1000];k=10;Do[ra=Drop[ra, {k, Length[ra], k}], {i, k}];ra Nest[Flatten[Most/@Partition[#,10]]&,Range[300],10] (* Harvey P. Dale, Mar 17 2015 *)
Comments