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.

A258848 The n-th pi-based arithmetic derivative of 2^3.

Original entry on oeis.org

8, 12, 20, 32, 80, 208, 512, 2304, 12288, 81920, 622592, 4931584, 38944768, 278380544, 2122727424, 17483677696, 128412352512, 1348723408896, 14768867966976, 188484960780288, 2416519442792448, 30543291749302272, 375877192068366336, 6101345960934506496
Offset: 0

Views

Author

Alois P. Heinz, Jun 12 2015

Keywords

Crossrefs

Row n=8 of A258850.

Programs

  • Maple
    with(numtheory):
    d:= n-> n*add(i[2]*pi(i[1])/i[1], i=ifactors(n)[2]):
    a:= proc(n) option remember; `if`(n=0, 2^3, d(a(n-1))) end:
    seq(a(n), n=0..23);

Formula

a(n) = A258851^n(2^3).