cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A112981 a(1) = a(2) = a(3) = 1; for n>3: a(n) = a(n-1)^3 + a(n-2)^3 + a(n-3)^3.

Original entry on oeis.org

1, 1, 1, 3, 29, 24417, 14557168544129, 3084826414596074361107793217201624802791
Offset: 1

Views

Author

Jonathan Vos Post, Jan 02 2006

Keywords

Comments

A cubic tribonacci sequence.
This is a cubic analog of a tribonacci sequence A000213, similarly to A000283 being the quadratic analog of the Fibonacci sequence A000045. a(4) and a(5) are primes; a(7) is semiprime; a(6) and a(8) have 3 prime factors. a(9) has 119 digits.

Examples

			a(6) = 1^3 + 3^3 + 29^3 = 24417.
		

Crossrefs

Programs

  • Mathematica
    RecurrenceTable[{a[1]==a[2]==a[3]==1,a[n]==a[n-1]^3+a[n-2]^3+a[n-3]^3},a,{n,10}] (* Harvey P. Dale, Jan 25 2018 *)