|
| |
|
|
A134816
|
|
Padovan's spiral numbers.
|
|
5
| |
|
|
1, 1, 1, 2, 2, 3, 4, 5, 7, 9, 12, 16, 21, 28, 37, 49, 65, 86, 114, 151, 200, 265, 351, 465, 616, 816, 1081, 1432, 1897, 2513, 3329, 4410, 5842, 7739, 10252, 13581, 17991, 23833, 31572, 41824, 55405, 73396, 97229, 128801, 170625, 226030, 299426, 396655
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,4
|
|
|
COMMENTS
| Numbers that are the side lengths of the equilateral triangles needed to draw the spiral which follow the Padovan sequence. This sequence appears to be essentially identical to one or more sequences already in the OEIS. See: A000931, A078027, A124745, A133034.
|
|
|
FORMULA
| a(n)=A000931(n+4).
a(n)=Sum_{x=1..nth number of Padovan sequence}x [From Juri-Stepan Gerasimov (2stepan(AT)rambler.ru], 17 Jul 2009)
|
|
|
EXAMPLE
| a(6)=3 because 6+4=10 and A000931(10)=3.
|
|
|
MATHEMATICA
| Drop[ CoefficientList[ Series[(1 - x^2)/(1 - x^2 - x^3), {x, 0, 52}], x], 5] (* Or *) a[1] = a[2] = a[3] = 1; a[n_] := a[n] = a[n - 2] + a[n - 3]; Array[ a, 48] [From Robert G. Wilson v (rgwv(AT)rgwv.com), Sep 30 2009]
|
|
|
CROSSREFS
| Sequence in context: A133034 A000931 A078027 * A072493 A064324 A173090
Adjacent sequences: A134813 A134814 A134815 * A134817 A134818 A134819
|
|
|
KEYWORD
| easy,nonn
|
|
|
AUTHOR
| Omar E. Pol (info(AT)polprimos.com), Nov 13 2007
|
|
|
EXTENSIONS
| More terms from Robert G. Wilson v (rgwv(AT)rgwv.com), Sep 30 2009
|
| |
|
|