listas de erlang: resultado esquisito do dropwhile

alguém por favor pode me ajudar a entender o que está acontecendo aqui

lists:dropwhile(fun(X) -> X < 8 end, lists:seq(1,10)).

"\b\t\n" % ??? what is this ? why not [8,9,10]

lists:dropwhile(fun(X) -> X < 7 end, lists:seq(1,10)).  

[7,8,9,10] % this is correct