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.
%I A090461 #61 May 29 2024 07:04:21 %S A090461 15,16,17,23,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43, %T A090461 44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66, %U A090461 67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89 %N A090461 Numbers k for which there exists a permutation of the numbers 1 to k such that the sum of adjacent numbers is a square. %C A090461 Conjecture: sequence includes all integers k > 24. See A090460 for the number of essentially different solutions. %C A090461 It is now known that 25..299 are in the sequence, see the Numberphile 2 link. - _Jud McCranie_, Jan 11 2018 %C A090461 Every 25 <= k <= 2^20 is in the sequence and (71*25^m-1)/2 is also in the sequence for every m, hence this sequence is infinite, see Mersenneforum link for the proof; we give Hamiltonian cycle for these k values if k >= 32. - _Robert Gerbicz_, Jan 17 2017 %C A090461 The conjecture has been proved: every k >= 25 is in the sequence, moreover for k >= 32 there is a Hamiltonian cycle; see Mersenneforum topic for a code and deterministic algorithm to find a sequence. - _Robert Gerbicz_, Jan 21 2018 %H A090461 Brady Haran and Matt Parker, <a href="https://www.youtube.com/watch?v=G1m7goLCJDY">The Square-Sum Problem</a>, Numberphile video (2018) %H A090461 Brady Haran, Matt Parker, and Charlie Turner, <a href="https://www.youtube.com/watch?v=7_ph5djCCnM">The Square-Sum Problem (extra footage) - Numberphile 2</a> (2018) %H A090461 HexagonVideos, <a href="https://www.youtube.com/watch?v=-vxW42R47bc">Numberphile's Square-Sum Problem was solved!</a>, YouTube video, 2023. %H A090461 Mersenneforum, <a href="http://mersenneforum.org/showthread.php?p=477787">The Square-Sum problem</a> %e A090461 See A071983. %p A090461 F:= proc(n) %p A090461 uses GraphTheory; %p A090461 local edg, G; %p A090461 edg:= select(t -> issqr(t[1]+t[2]),{seq(seq({i,j},i=1..j-1),j=1..n)}) union {seq({i,n+1},i=1..n)}; %p A090461 G:= Graph(n+1,edg); %p A090461 IsHamiltonian(G) %p A090461 end proc: %p A090461 select(F, [$1..50]); # _Robert Israel_, Jun 05 2015 %t A090461 Join[{15, 16, 17, 23}, Range[25, 100]] (* _Paolo Xausa_, May 28 2024 *) %Y A090461 Cf. A071983, A071984 (number of circular solutions), A090460. %Y A090461 Cf. A078107 (k for which there is no solution). %K A090461 nonn %O A090461 1,1 %A A090461 _T. D. Noe_, Dec 01 2003 %E A090461 a(31)-a(69) from _Donovan Johnson_, Sep 14 2010