So, it got me wondering why most of the interviewees where so interested in it. This is an honest question, from a person that has never used Lisp before.
-----
The other part of Lisp, which is IMO highly underrated, is the purity of "List-Programming", the CAR / CDR data structure that is truly universal.
You can represent arrays, lists, sets, trees, graphs, and... basically everything... with garbage-collected CAR/CDR pairs.
Its a bit inefficient (especially on today's architectures), but the supreme flexibility of the "Lisp list", (aka: a linked-list-like CAR/CDR pair) is incredible.
Back in the days before standard libraries, Python-dictionaries, and the like, having a singular, consistent data-structure that was reasonably efficient in many use-cases (at the time CAR/CDR pairs were very efficient to traverse, not so much today anymore), and flexible for pretty much all problems in existence is a pretty neat trick.
-------
There are a few tricks that didn't really stick. Symbolic computation, with "quote" symbols and the like, was popular for compiler writers / macros, but I don't think its really come out into the greater programming community. Continuations, CLOS / Multiple-dispatch based OOP, and other features were also experimented with the Lisp community and are cool to think about but not really used outside of Lisp circles yet.
Intro to Computational Thinking in Julia
Lisp was used in education, as an early Functional Programming language and in symbolic AI. The latter had a considerable hype then.
Note also that Peter Seibel wrote an influential Common Lisp book, so the choice of people might have been influenced by the author...
Today a person who uses LISP might use Python, TCL, Node.js, Lua, etc.
Despite attempts (Algol, Ada, ...), there wasn't really a portable language for general systems programming until C came along. FORTRAN and COBOL were designed for specific application domains. Pascal was intended for education although I thought Borland's Turbo Pascal was better than C for real work in 1990.