In addition to the Lisp books already mentioned, I recommend the following.
The original paper by McCarthy.
McCarthy was asked why he invented Lisp. He said it was for artificial intelligence. One reason is because code and data have the same syntax. But this has uses beyond AI.
Currently I use Lisp for metaprogramming, as opposed to coding directly in C++. It's a good language choice when you need a translator between one language and another. I also use Lisp in other ways, but they are secret projects. ;)
The Elements of Artificial Intelligence Using Common Lisp by Steven Tanimoto
Problem Solving and Artificial Intelligence by Lauriere. See chapter 2 for his discussion of Lisp and why it is useful in AI.
Common Lisp, The Langauge by Guy Steele
There are some good Youtube videos on Lisp, including interviews with John McCarthy and demonstrations of those old Lisp machines.
This page contains a link at the bottom to a paper by McCarthy on the History of Lisp.
If you want to try some Lisp programming, which I highly recommend, then consider
CLISP which is easy to download and install. Or if you prefer a Windows GUI you may wish to try
LispWorks. They have Personal and Hobbyist editions. I haven't used it but it looks interesting.
There is also
Scheme and
Clojure, which are variants of Lisp.
This is an
interesting story about a Lisp programmer at NASA.
You already know about Paul Graham. Have you read his
online articles?
Prof Novak has done lots of work on physics and AI. Here is one example. He has some code examples somewhere which allow entering a physics problem in word form and then getting the answer.
https://www.cs.utexas.edu/~novak/tkde91.html
I could go on and on and on some more. Here is Lisp for quantum programming.
If you are studying the origins of Lisp it helps to understand something about Lambda Calculus. Here is a good introductory video on this topic.
By the way, Common Lisp also supports object-oriented programming.