login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A143035
A sequence of asymptotic density zeta(9) - 1, where zeta is the Riemann zeta function.
10
255, 767, 1279, 1791, 2303, 2815, 3327, 3839, 4351, 4863, 5375, 5887, 6399, 6911, 7423, 7935, 8447, 8959, 9471, 9983, 10495, 11007, 11519, 12031, 12543, 13055, 13118, 13567, 14079, 14591, 15103, 15615, 16127, 16639, 17151, 17663, 18175
OFFSET
1,1
COMMENTS
Made up of a collection of mutually exclusive residue classes modulo multiples of factorials. A set of such sequences with entries for each zeta(k) - 1 partitions the integers. See the linked paper for their construction.
LINKS
William J. Keith, Sequences of Density zeta(K) - 1, INTEGERS, Vol. 10 (2010), Article #A19, pp. 233-241. Also arXiv preprint, arXiv:0905.3765 [math.NT], 2009 and author's copy.
MATHEMATICA
f[n_] := Module[{k = n - 1, m = 2, r}, While[{k, r} = QuotientRemainder[k, m]; r != 0, m++]; IntegerExponent[k + 1, m] + 2]; Select[Range[2*10^4], f[#] == 9 &] (* Amiram Eldar, Feb 15 2021 after Kevin Ryde at A161189 *)
KEYWORD
nonn
AUTHOR
William J. Keith, Jul 18 2008
STATUS
approved