cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A075302 Transpose of array A075300.

This page as a plain text file.
%I A075302 #7 May 01 2014 02:48:30
%S A075302 0,2,1,4,5,3,6,9,11,7,8,13,19,23,15,10,17,27,39,47,31,12,21,35,55,79,
%T A075302 95,63,14,25,43,71,111,159,191,127,16,29,51,87,143,223,319,383,255,18,
%U A075302 33,59,103,175,287,447,639,767,511,20,37,67,119,207,351,575,895,1279
%N A075302 Transpose of array A075300.
%C A075302 The top-left corner of the array looks like:
%C A075302 0 2 4 6 8 10 12 14 ...
%C A075302 1 5 9 13 17 21 25 29 ...
%C A075302 3 11 19 27 35 43 51 59 ...
%C A075302 7 23 39 55 71 87 ...
%C A075302 15 47 79 ...
%C A075302 This can be used to construct mappings like A059884 and A075173, where the elements of the first row give the bit-positions where to interleave the first element of a finite vector of nonnegative integers, the second row the bit-positions for the second element, etc.
%H A075302 <a href="/index/Per#IntegerPermutation">Index entries for sequences that are permutations of the natural numbers</a>
%p A075302 A075302 := n -> A075300bi(A002262(n), A025581(n));
%p A075302 A075300bi := (x,y) -> (2^x * (2*y + 1))-1;
%p A075302 A002262 := n -> n - binomial(floor((1/2)+sqrt(2*(1+n))),2);
%p A075302 A025581 := n -> binomial(1+floor((1/2)+sqrt(2*(1+n))),2) - (n+1);
%Y A075302 Inverse permutation: A075303. Transpose: A075300. The X-projection is given by A025480 and the Y-projection is A007814(n+1). Cf. A002262, A025581.
%K A075302 nonn,tabl
%O A075302 0,2
%A A075302 _Antti Karttunen_, Sep 12 2002