Issue in getting a sequence from a List in scala

Hello,
I am trying to execute a toSeq on a List .
val test = List(1,2,4,65,121,225)
Now doing the below in web console ,
test.toSeq

I am getting , res0: scala.collection.immutable.Seq[Int] = List(1, 2, 4, 65, 121, 225)

But doing the same in jupyter notebook , I m getting a list , no sequence value ,

Please explain why ?

It is the way jupyter notebook prints values.