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.

A158569 a(n) = Sum_{i=1..F(n)} F(i), where F = A000045, Fibonacci numbers.

Original entry on oeis.org

0, 1, 1, 2, 4, 12, 54, 609, 28656, 14930351, 365435296161, 4660046610375530308, 1454489111232772683678306641952, 5789092068864820527338372482892113982249794889764, 7191684930184179482016276395611672639105248126232175323349533708710427892956420
Offset: 0

Views

Author

Ctibor O. Zizka, Mar 21 2009

Keywords

Comments

a(14) has 79 digits. - Emeric Deutsch, Apr 05 2009

Crossrefs

Programs

  • Maple
    with(combinat): a := proc (n) options operator, arrow: add(fibonacci(i), i = 1 .. fibonacci(n)) end proc: seq(a(n), n = 0 .. 14); # Emeric Deutsch, Apr 05 2009
    # second Maple program:
    F:= n-> (<<0|1>, <1|1>>^n)[1, 2]:
    a:= n-> F(F(n)+2)-1:
    seq(a(n), n=0..14);  # Alois P. Heinz, Apr 14 2025
  • Mathematica
    Total/@Table[Sum[Fibonacci[Range[i]],{i,{Fibonacci[n]}}],{n,14}] (* Harvey P. Dale, Aug 26 2013 *)

Formula

a(n) = A000071(A157725(n)). - Alois P. Heinz, Apr 14 2025

Extensions

More terms from Emeric Deutsch, Apr 05 2009