A368327 a(0) = 0; a(n) = (1+a(n-1))^5 for n > 0.
0, 1, 32, 39135393, 91801241053644953553642221885011784224
Offset: 0
Links
- Geir Agnarsson, Elie Alhajjar, and Aleyah Dawkins, On locally finite ordered rooted trees and their rooted subtrees, arXiv:2312.11379 [math.CO], 2023. See p. 6 with error at a(4).
Programs
-
Mathematica
{0}~Join~NestList[(# + 1)^5 &, 1, 5]