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”).

A167389
(arg(exp(-w)) + Im(w)) / (2*Pi), with w = W(n,-log(2)/2)/log(2), where W is the Lambert W function.
5
2, 3, 5, 6, 8, 9, 10, 12, 13, 15, 16, 18, 19, 21, 22, 23, 25, 26, 28, 29, 31, 32, 34, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 49, 51, 52, 54, 55, 57, 58, 60, 61, 62, 64, 65, 67, 68, 70, 71, 72, 74, 75, 77, 78, 80, 81, 83, 84, 85, 87, 88, 90, 91, 93, 94, 96, 97, 98, 100, 101
OFFSET
1,1
COMMENTS
The definition seems unnecessarily obscure. What is really going on here? - N. J. A. Sloane, Nov 13 2009
The complement is A172513 with first differences in A172515. - R. J. Mathar, Feb 27 2010
The original definition was: "(argument(exp(-(log(2)+W(n, -log(sqrt(2))))/log(2)))*log(2) + Im(W(n, -log(sqrt(2)))))/(2*Pi*log(2)) where W is the Lambert W function". The expression simplifies to that given in NAME. From the documents in LINKS, it appears that W(n,z) denotes the n-th branch of a complex LambertW function. It remains to understand the intended meaning of the distinction between arg(exp(z)) and Im(z). - M. F. Hasler, Apr 12 2019
From Travis Scott, Oct 09 2022: (Start)
One's first impression of this sequence and its complement (q.v.) is that of a Beatty duet. Indeed, a(n) never strays far from ceiling(n/log(2)), differing by 1 only at the 7, 16, 25, 34, 43, 50, 52, 59, ...-th terms.
By the identity arg(e^z) = Im(z)(mod 2*Pi)_(-Pi,Pi] -- where the subscripted range indicates an offset modulo rolling over at -Pi -> Pi rather than at 2*Pi -> 0 [this can be formalized as Im(z) - 2*Pi*ceiling((Im(z) - Pi)/(2*Pi))] -- we see that the argument component of our expression doesn't add any new information but rather acts on the imaginary component as part of a quotient device that reduces to floor(Im(w)/(2*Pi)+1/2) [or to round(Im(w)/(2*Pi)), with the caveat to always round up in the unlikely event that we encounter a half-integer].
Now consider v = W(n,-log(2)/2), taking the same product logarithm as for w but not dividing the result by log(2). Our expression then simply counts branch cuts and we get n. In very abusive but perhaps more visual language, if the sequence on v keeps track of the number of times the Im(W(n,-log(2)/2))-th power of the 2*Pi-th root of unity laps the negative real axis as we follow it counterclockwise around the unit circle, then the sequence on w keeps track of how many laps that would be on a circle of radius log(2) or by a log(4)*Pi-th root of unity.
It remains to guess if this tally has an intent or if it is a tally for tally's sake. (End)
LINKS
FORMULA
(argument(exp(-(log(2) + W(n,-(1/2)*log(2)))/log(2)))*log(2) + Im(W(n,-(1/2)*log(2))))/ (2*Pi*log(2)).
a(n) ~ n/log(2). - Vaclav Kotesovec, Jul 08 2021
a(n) = floor(Im(W(n,-log(2)/2))/(Pi*log(4))+1/2). - Travis Scott, Oct 09 2022
MAPLE
seq(round(evalf((argument(exp(-(ln(2)+LambertW(n, -(1/2)*ln(2)))/ln(2)))*ln(2)+Im(LambertW(n, -(1/2)*ln(2))))/(2*Pi*ln(2)))), n = 1 .. 100)
MATHEMATICA
a[n_] := (Arg[Exp[-(Log[2] + ProductLog[n, -1/2*Log[2]])/Log[2]]]* Log[2] + Im[ProductLog[n, -1/2*Log[2]]])/(2*Pi*Log[2]); Table[a[n] // Round, {n, 1, 70}] (* Jean-François Alcover, Jun 20 2013 *)
Table[Floor[Im@LambertW[n, -Log@2/2]/Log@4/Pi+1/2], {n, 69}] (* Travis Scott, Oct 09 2022 *)
CROSSREFS
Cf. A172513 (complement).
Sequence in context: A184580 A184622 A195129 * A288373 A087067 A166018
KEYWORD
nonn,uned
AUTHOR
Stephen Crowley, Nov 02 2009
STATUS
approved