A373212 Signature sequence of log(2).
1, 1, 2, 1, 2, 3, 1, 2, 3, 1, 4, 2, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 6, 4, 2, 5, 3, 1, 6, 4, 2, 7, 5, 3, 1, 6, 4, 2, 7, 5, 3, 1, 8, 6, 4, 2, 7, 5, 3, 1, 8, 6, 4, 2, 9, 7, 5, 3, 1, 8, 6, 4, 2, 9, 7, 5, 3, 10, 1, 8, 6, 4, 2, 9, 7, 5, 3, 10, 1, 8, 6, 4, 11, 2, 9, 7, 5, 3, 10, 1, 8, 6, 4, 11, 2, 9, 7, 5, 12, 3, 10, 1, 8
Offset: 1
Keywords
Crossrefs
Cf. A002162.
Programs
-
Maple
SIGSEQsort := proc(l1::list,l2::list) if op(1,l1) < op(1,l2) then return true ; else return false ; end if end proc: SIGSEQ := proc(x,vmax) local TBsrtd,i,j ; TBsrtd := [] ; for i from 1 do if i > vmax then break ; end if; for j from 1 do if evalf(i+j*x) > vmax then break ; end if; TBsrtd := [op(TBsrtd),[evalf(i+j*x),i]] ; end do: end do: sort(TBsrtd,SIGSEQsort) ; [seq(op(2,v),v=%)] ; end proc: Digits := 100 ; SIGSEQ(log(2),50.0) ;
Comments