login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A099147 Iterated hexagonal numbers, starting at 1. 4

%I #15 Sep 29 2023 19:34:44

%S 1,6,66,8646,149497986,44699295486614406,

%T 3996054033999333969062944766851266,

%U 31936895685284700329548847429175178142518023225832967407199564754246

%N Iterated hexagonal numbers, starting at 1.

%C Agrees with A097419 for n>1.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/HexagonalNumber.html">Hexagonal Number</a>.

%F a(n) = b(n) for n<=2, a(n) = b(a(n-1)) for n>2, where b(n) = A000384(n) = n*(2*n-1), the hexagonal numbers.

%F a(1) = 1, a(2) = 6, a(n) = 2*a(n-1)^2 - a(n-1) for n>2.

%F Let H(n) = n*(2*n-1) = the n-th hexagonal number. Define A(n, k) recursively by A(1, k) = H(k), A(n, k) = A(1, A(n-1, k)) for n>1. Then a(1) = A(1, 1), a(n) = A(n-1, 2) for n>1.

%e a(4) = b(a(3)) = b(b(a(2))) = b(b(b(2))) = b(b(6)) = b(66) = 8646, where b(n) = A000384(n).

%o (PARI) {hexagonal(n) = n*(2*n-1)} {a(n) = if(n<=2,hexagonal(n),hexagonal(a(n-1)))} \\ _Klaus Brockhaus_, Jan 10 2007

%Y Cf. A000384, A097419.

%K nonn

%O 1,2

%A _Jonathan Vos Post_, Nov 14 2004

%E Edited by _Klaus Brockhaus_, Jan 10 2007

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 15:57 EDT 2024. Contains 371961 sequences. (Running on oeis4.)