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!)
A248566 Numbers k such that A248565(k+1) = A248565(k) + 1. 4
1, 2, 4, 5, 7, 8, 10, 12, 14, 15, 17, 19, 21, 23, 25, 27, 29, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 95, 97, 99, 101, 103, 105, 107, 109, 111, 113, 115, 116, 118 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
(A248565(k+1) - A248565(k)) = (1, 1, 2, 1, 1, 2, 1, 1, 2, 1, 2, 1, 2, 1, 1, 2, 1, 2,...), so that A248566 = (1, 2, 4, 5, 7, 8, 10, 12, 14, ..) and A248567 = (3, 6, 9, 11, 13, 16, 18, 20, ...).
MATHEMATICA
z = 2500; p[k_] := p[k] = Sum[1/(h*4^h), {h, 1, k}];
N[Table[p[k], {k, 1, z/5}], 12];
N[Table[Log[4/3] - p[n], {n, 1, z/5}]];
f[n_] := f[n] = Select[Range[z], Log[4/3] - p[#] < 1/8^n &, 1];
u = Flatten[Table[f[n], {n, 1, z}]] ; (* A248565 *)
Flatten[Position[Differences[u], 1]]; (* A248566 *)
Flatten[Position[Differences[u], 2]]; (* A248567 *)
CROSSREFS
Sequence in context: A174131 A014248 A174799 * A091627 A160830 A363761
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 09 2014
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 13:38 EDT 2024. Contains 371970 sequences. (Running on oeis4.)