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 A045690 #48 Jul 02 2025 16:01:56 %S A045690 1,1,2,3,6,10,20,37,74,142,284,558,1116,2212,4424,8811,17622,35170, %T A045690 70340,140538,281076,561868,1123736,2246914,4493828,8986540,17973080, %U A045690 35943948,71887896,143771368,287542736,575076661,1150153322,2300289022,4600578044,9201120918 %N A045690 Number of binary words of length n (beginning with 0) whose autocorrelation function is the indicator of a singleton. %C A045690 The number of binary strings sharing the same autocorrelations. %C A045690 Appears to be row sums of A155092, beginning from a(2). - _Mats Granvik_, Jan 20 2009 %C A045690 The number of binary words of length n (beginning with 0) which do not start with an even palindrome (i.e. which are not of the form ss*t where s is a (nonempty) word, s* is its reverse, and t is any (possibly empty) word). - _Mamuka Jibladze_, Sep 30 2014 %C A045690 From _Gus Wiseman_, Mar 08 2021: (Start) %C A045690 This sequence counts each of the following essentially equivalent things: %C A045690 1. Sets of distinct positive integers with maximum n in which all adjacent elements have quotients > 1/2. For example, the a(1) = 1 through a(6) = 10 sets are: %C A045690 {1} {2} {3} {4} {5} {6} %C A045690 {2,3} {3,4} {3,5} {4,6} %C A045690 {2,3,4} {4,5} {5,6} %C A045690 {2,3,5} {3,4,6} %C A045690 {3,4,5} {3,5,6} %C A045690 {2,3,4,5} {4,5,6} %C A045690 {2,3,4,6} %C A045690 {2,3,5,6} %C A045690 {3,4,5,6} %C A045690 {2,3,4,5,6} %C A045690 2. For n > 1, sets of distinct positive integers with maximum n - 1 whose first-differences are term-wise less than their decapitation (remove the maximum). For example, the set q = {2,4,5} has first-differences (2,1), which are not less than (2,4), so q is not counted under a(5). On the other hand, r = {2,3,5,6} has first-differences {1,2,1}, which are less than {2,3,5}, so r is counted under a(6). %C A045690 3. Compositions of n where each part after the first is less than the sum of all preceding parts. For example, the a(1) = 1 through a(6) = 10 compositions are: %C A045690 (1) (2) (3) (4) (5) (6) %C A045690 (21) (31) (41) (51) %C A045690 (211) (32) (42) %C A045690 (311) (411) %C A045690 (212) (321) %C A045690 (2111) (312) %C A045690 (3111) %C A045690 (2121) %C A045690 (2112) %C A045690 (21111) %C A045690 (End) %H A045690 Alois P. Heinz, <a href="/A045690/b045690.txt">Table of n, a(n) for n = 1..3324</a> (first 500 terms from T. D. Noe) %H A045690 E. H. Rivals, <a href="http://www.lirmm.fr/~rivals/RESEARCH/PERIOD/">Autocorrelation of Strings</a>. %H A045690 E. H. Rivals, S. Rahmann <a href="http://www.lirmm.fr/~rivals/PUBLI/FILES/RivalsRahmannJCTA03.pdf">Combinatorics of Periods in Strings</a> %H A045690 E. H. Rivals, S. Rahmann, <a href="http://dx.doi.org/10.1016/S0097-3165(03)00123-7">Combinatorics of Periods in Strings</a>, Journal of Combinatorial Theory - Series A, Vol. 104(1) (2003), pp. 95-113. %H A045690 T. Sillke, <a href="http://www.mathematik.uni-bielefeld.de/~sillke/SEQUENCES/autocorrelation">How many words have the same autocorrelation value?</a> %F A045690 a(2n) = 2*a(2n-1) - a(n) for n >= 1; a(2n+1) = 2*a(2n) for n >= 1. %F A045690 a(n) = A342085(2^n). - _Gus Wiseman_, Mar 08 2021 %p A045690 a:= proc(n) option remember; `if`(n=0, 1/2, %p A045690 2*a(n-1)-`if`(n::odd, 0, a(n/2))) %p A045690 end: %p A045690 seq(a(n), n=1..40); # _Alois P. Heinz_, Jun 24 2021 %t A045690 a[1] = 1; a[n_] := a[n] = If[EvenQ[n], 2*a[n-1] - a[n/2], 2*a[n-1]]; Array[a, 40] (* _Jean-François Alcover_, Jul 17 2015 *) %t A045690 Table[Length[Select[Subsets[Range[n]],MemberQ[#,n]&&Min@@Divide@@@Partition[#,2,1]>1/2&]],{n,8}] (* _Gus Wiseman_, Mar 08 2021 *) %o A045690 (PARI) a(n)=if(n<2,n>0,2*a(n-1)-(1-n%2)*a(n\2)) %Y A045690 Cf. A002083, A005434. A003000 = 2*a(n) for n > 0. %Y A045690 Different from, but easily confused with, A007148 and A093371. %Y A045690 The version with quotients <= 1/2 is A018819. %Y A045690 The version with quotients < 1/2 is A040039. %Y A045690 Multiplicative versions are A337135, A342083, A342084, A342085. %Y A045690 A000045 counts sets containing n with all differences > 2. %Y A045690 A000929 counts partitions with no adjacent parts having quotient < 2. %Y A045690 A342094 counts partitions with no adjacent parts having quotient > 2. %Y A045690 Cf. A003242, A038548, A056924, A154402, A167606, A342096, A342097, A342098, A342191. %K A045690 nonn,easy,nice %O A045690 1,3 %A A045690 Torsten.Sillke(AT)uni-bielefeld.de %E A045690 More terms from _James Sellers_. %E A045690 Additional comments from _Michael Somos_, Jun 09 2000