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 A181063 #23 Aug 05 2024 18:51:30 %S A181063 1,2,6,12,3960,60,420,840,17907120,2520,411863760,27720,68502634200, %T A181063 447069823200,360360,720720,7600186994400,12252240,9524356075634400, %U A181063 81909462250455840,1149071006394511200,232792560,35621201198229847200,5354228880,91351145008363640400 %N A181063 Smallest positive integer with a discrete string of exactly n consecutive divisors, or 0 if no such integer exists. %C A181063 The word "discrete" is used to describe a string of consecutive divisors that is not part of a longer such string. %C A181063 Does a(n) ever equal 0? %C A181063 a(n) = A003418(n) iff n belongs to A181062; otherwise, a(n) > A003418(n). a(A181062(n)) = A051451(n). %H A181063 David W. Wilson, <a href="/A181063/b181063.txt">Table of n, a(n) for n = 1..1000</a> %e A181063 a(5) = 3960 is divisible by 8, 9, 10, 11, and 12, but not 7 or 13. It is the smallest positive integer with a string of 5 consecutive divisors that is not part of a longer string. %e A181063 From _Gus Wiseman_, Oct 16 2019: (Start) %e A181063 The sequence of terms together with their divisors begins: %e A181063 1: {1} %e A181063 2: {1,2} %e A181063 6: {1,2,3,6} %e A181063 12: {1,2,3,4,6,12} %e A181063 3960: {1,2,...,8,9,10,11,12,...,1980,3960} %e A181063 60: {1,2,3,4,5,6,...,30,60} %e A181063 420: {1,2,3,4,5,6,7,...,210,420} %e A181063 840: {1,2,3,4,5,6,7,8,...,420,840} %e A181063 (End) %t A181063 tav=Table[Length/@Split[Divisors[n],#2==#1+1&],{n,10000}]; %t A181063 Table[Position[tav,i][[1,1]],{i,Split[Union@@tav,#2==#1+1&][[1]]}] (* Assumes there are no zeros. - _Gus Wiseman_, Oct 16 2019 *) %Y A181063 The version taking only the longest run is A328449. %Y A181063 The longest run of divisors of n has length A055874(n). %Y A181063 Numbers whose divisors > 1 have no non-singleton runs are A088725. %Y A181063 The number of successive pairs of divisors of n is A129308(n). %Y A181063 Cf. A000005, A003418, A027750, A060775, A181064, A199970, A328166, A328448. %K A181063 nonn %O A181063 1,2 %A A181063 _Matthew Vandermast_, Oct 07 2010