27467 is a member of OEIS A133539: sum of third powers of five consecutive primes, here 11, 13, 17, 19 and 23. The sequence can be generated as follows:
INPUT
P=[p for p in prime_range(30)]
L=[]
for i in range(len(P)-5):
sum=P[i]^3+P[i+1]^3+P[i+2]^3+P[i+3]^3+P[i+4]^3
if sum==27467:
print(P[i],P[i+1],P[i+2],P[i+3],P[i+4])
L.append(sum)
print(L)
OUTPUT
11 13 17 19 23
[1834, 4023, 8909, 15643, 27467]
27467 is a Duffinian number.
27467 can be rendered as a digit equation as follows:
2 - 7 + 6 = -6 + 7