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!)
A334931 Numbers that generate rotationally symmetrical XOR-triangles with a pattern of zero-triangles of edge length 2, some of which are clipped to result in some singleton zeros at the edges. 3

%I #19 Mar 24 2021 23:08:47

%S 151,233,1483,1693,10707,13029,644007,941241,317049751,490370281,

%T 3111314891,3550957213,22455577043,27325461221,1350581212071,

%U 1973926386873,664901519788951,1028381017273577,6524900247528907,7446897021636253,47092758308252115,57305645652210405

%N Numbers that generate rotationally symmetrical XOR-triangles with a pattern of zero-triangles of edge length 2, some of which are clipped to result in some singleton zeros at the edges.

%C Subset of A334769 which is a subset of A334556.

%C Numbers m in this sequence A070939(m) (mod 3) = 2. The numbers in this sequence can be constructed using run lengths of bits.

%C 2n has the reverse run length pattern as 2n - 1. a(1) has the run lengths {1, 2, 1, 1, 3}, while a(2) has {3, 1, 1, 2, 1}, etc.

%C For n = 1 (mod 8): 12..(1132)..113;

%C For n = 3 (mod 8): 113..(2113)..2112;

%C For n = 5 (mod 8): 11123..(1123)..1122;

%C For n = 7 (mod 8): 123112..(3112)..31123, where the parenthetic run lengths occur, when they occur, in multiples of 3. Thus, a(9) has the run length form 12113211321132113 = binary 10010111001011100101110010111 = decimal 317049751.

%H Michael De Vlieger, <a href="/A334931/b334931.txt">Table of n, a(n) for n = 1..1264</a>

%H Michael De Vlieger, <a href="/A334931/a334931.png">Diagram montage</a> of XOR-triangles resulting from a(n) with 1 <= n <= 32.

%H Michael De Vlieger, <a href="http://vincico.com/seq/a334769.html">Central zero-triangles in rotationally symmetrical XOR-Triangles</a>, 2020.

%H <a href="/index/Bi#binary">Index entries for sequences related to binary expansion of n</a>

%H <a href="/index/X#XOR-triangles">Index entries for sequences related to XOR-triangles</a>

%H <a href="/index/Rec#order_16">Index entries for linear recurrences with constant coefficients</a>, signature (0,0,0,0,0,0,0,2097153,0,0,0,0,0,0,0,-2097152).

%F From _Alejandro J. Becerra Jr._, Mar 01 2021: (Start)

%F G.f.: x*(1654784*x^13 + 1359872*x^12 + 477184*x^11 + 1236992*x^10 + 1733632*x^9 + 379648*x^8 + 941241*x^7 + 644007*x^6 + 13029*x^5 + 10707*x^4 + 1693*x^3 + 1483*x^2 + 233*x + 151)/((1 - x^8)*(1 - 2097152*x^8)).

%F a(n) = 2097153*a(n-8) - 2097152*a(n-16). (End)

%e Diagrams of a(1)-a(6), replacing "0" with "." and "1" with "@" for clarity:

%e a(1) = 151 (a(2) = 233 appears as a mirror image):

%e @ . . @ . @ @ @

%e @ . @ @ @ . .

%e @ @ . . @ .

%e . @ . @ @

%e @ @ @ .

%e . . @

%e . @

%e @

%e .

%e a(3) = 1483 (a(4) = 1693 appears as a mirror image):

%e @ . @ @ @ . . @ . @ @

%e @ @ . . @ . @ @ @ .

%e . @ . @ @ @ . . @

%e @ @ @ . . @ . @

%e . . @ . @ @ @

%e . @ @ @ . .

%e @ . . @ .

%e @ . @ @

%e @ @ .

%e . @

%e @

%e .

%e a(5) = 10707 (a(6) = 13029 appears as a mirror image):

%e @ . @ . . @ @ @ . @ . . @ @

%e @ @ @ . @ . . @ @ @ . @ .

%e . . @ @ @ . @ . . @ @ @

%e . @ . . @ @ @ . @ . .

%e @ @ . @ . . @ @ @ .

%e . @ @ @ . @ . . @

%e @ . . @ @ @ . @

%e @ . @ . . @ @

%e @ @ @ . @ .

%e . . @ @ @

%e . @ . .

%e @ @ .

%e . @

%e @

%t Array[FromDigits[Flatten@ MapIndexed[ConstantArray[#2, #1] & @@ {#1, Mod[First[#2], 2]} &, If[EvenQ@ #1, Reverse@ #2, #2]], 2] & @@ {#1, Which[#2 == 1, PadRight[{1, 2}, 12 Ceiling[#1/8] - 7, {3, 2, 1, 1}], #2 == 2, PadRight[{1, 1}, 12 Ceiling[#1/8] - 6, {1, 1, 3, 2}]~Join~{2}, #2 == 3, PadRight[{1, 1}, 12 Ceiling[#1/8] - 4, {3, 1, 1, 2}]~Join~{2}, True, PadRight[{}, 12 Ceiling[#1/8] - 1, {1, 2, 3, 1}]]} & @@ {#, Ceiling[Mod[#, 8]/2]} &, 22]

%t (* Generate a textual plot of XOR-triangle T(n) *)

%t xortri[n_Integer] := TableForm@ MapIndexed[StringJoin[ConstantArray[" ", First@ #2 - 1], StringJoin @@ Riffle[Map[If[# == 0, "." (* 0 *), "@" (* 1 *)] &, #1], " "]] &, NestWhileList[Map[BitXor @@ # &, Partition[#, 2, 1]] &, IntegerDigits[n, 2], Length@ # > 1 &]]

%t (* From G.f.: *)

%t Rest@ CoefficientList[Series[x (1654784 x^13 + 1359872 x^12 + 477184 x^11 + 1236992 x^10 + 1733632 x^9 + 379648 x^8 + 941241 x^7 + 644007 x^6 + 13029 x^5 + 10707 x^4 + 1693 x^3 + 1483 x^2 + 233 x + 151)/((1 - x^8) (1 - 2097152 x^8)), {x, 0, 22}], x] (* _Michael De Vlieger_, Mar 19 2021 *)

%Y Cf. A334556, A334769, A334930, A334932.

%K nonn,easy

%O 1,1

%A _Michael De Vlieger_, May 16 2020

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 24 17:29 EDT 2024. Contains 371962 sequences. (Running on oeis4.)