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!)
A210535 Second inverse function (numbers of columns) for pairing function A209293. 2
1, 2, 1, 2, 3, 1, 2, 4, 3, 1, 2, 4, 5, 3, 1, 2, 4, 6, 5, 3, 1, 2, 4, 6, 7, 5, 3, 1, 2, 4, 6, 8, 7, 5, 3, 1, 2, 4, 6, 8, 9, 7, 5, 3, 1, 2, 4, 6, 8, 10, 9, 7, 5, 3, 1, 2, 4, 6, 8, 10, 11, 9, 7, 5, 3, 1, 2, 4, 6, 8, 10, 12, 11, 9, 7, 5, 3, 1, 2, 4, 6, 8, 10, 12 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Boris Putievskiy, Transformations [of] Integer Sequences And Pairing Functions arXiv:1212.2732 [math.CO], 2012.
Eric Weisstein's World of Mathematics, Pairing functions
FORMULA
a(n) = 2*A200260(n)-A101688(n)*(4*A002260(n)-2*A003056(n)-3).
a(n) = 2*i-v*(4*i-2*t-3), where t = floor((-1+sqrt(8*n-7))/2), i = n-t*(t+1)/2, v = floor((2*n+1-t*(t+1))/(t+3)).
EXAMPLE
The start of the sequence as triangle array read by rows:
1;
2,1;
2,3,1;
2,4,3,1;
2,4,5,3,1;
2,4,6,5,3,1;
2,4,6,7,5,3,1;
2,4,6,8,7,5,3,1;
. . .
Row number r contains permutation numbers from 1 to r: 2,4,6,...2*floor(r/2),2*floor(r/2)-1,2*floor(r/2)-3,...3,1.
PROG
(Python)
t=int((math.sqrt(8*n-7)-1)/2)
i=n-t*(t+1)/2
v=int((2*n+1-t*(t+1))/(t+3))
result=2*i-v*(4*i-2*t-3)
CROSSREFS
Sequence in context: A370263 A194976 A195082 * A194983 A195073 A194987
KEYWORD
nonn
AUTHOR
Boris Putievskiy, Jan 28 2013
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 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)