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.

A231292 a(n) = Jacobsthal(n)^n, where Jacobsthal(n) = A001045(n), for n>=1.

Original entry on oeis.org

1, 1, 27, 625, 161051, 85766121, 271818611107, 2724905250390625, 125015825667824393931, 21259046894411315872085401, 15087863296794400779633937999667, 41840013551409555494294964922119140625, 470091178834036922915254196307625156782873691
Offset: 1

Views

Author

Paul D. Hanna, Nov 06 2013

Keywords

Crossrefs

Programs

  • Mathematica
    Module[{nn=20},#[[1]]^#[[2]]&/@Thread[{Rest[LinearRecurrence[{1,2},{0,1},nn+1]],Range[nn]}]] (* Harvey P. Dale, Jan 17 2022 *)
  • PARI
    {a(n)=(2^n-(-1)^n)^n/3^n}
    for(n=1, 15, print1(a(n), ", "))

Formula

a(n) = (2^n - (-1)^n)^n / 3^n.
One-third the logarithmic derivative of A211893.