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.

Showing 1-1 of 1 results.

A366817 Detour index of n body-centered cubic grid unit cells in a row.

Original entry on oeis.org

64, 298, 752, 1476, 2520, 3934, 5768, 8072, 10896, 14290, 18304, 22988, 28392, 34566, 41560, 49424, 58208, 67962, 78736, 90580, 103544, 117678, 133032, 149656, 167600, 186914, 207648, 229852, 253576, 278870, 305784, 334368, 364672, 396746, 430640
Offset: 1

Views

Author

Benedek Nagy, Oct 24 2023

Keywords

Crossrefs

Programs

  • Mathematica
    A366817[n_] := (25*n^3 + 180*n^2 - 13*n)/3; Array[A366817, 50] (* or *)
    LinearRecurrence[{4, -6, 4, -1}, {64, 298, 752, 1476}, 50] (* Paolo Xausa, May 28 2024 *)
  • PARI
    a(n) = (25*n^3 + 180*n^2 - 13*n)/3 \\ Andrew Howroyd, Oct 24 2023

Formula

a(n) = (25*n^3 + 180*n^2 - 13*n)/3.
From Stefano Spezia, May 28 2024: (Start)
G.f.: 2*x*(32 + 21*x - 28*x^2)/(1 - x)^4.
E.g.f.: exp(x)*x*(192 + 255*x + 25*x^2)/3. (End)
Showing 1-1 of 1 results.