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.

A193181 a(n) = lcm(f(1),f(2),...,f(n)) with f(x) = x^2+1.

Original entry on oeis.org

2, 10, 10, 170, 2210, 81770, 408850, 408850, 16762850, 1693047850, 103275918850, 2995001646650, 2995001646650, 590015324390050, 66671731656075650, 17134635035611442050, 17134635035611442050, 17134635035611442050, 3101368941445671011050
Offset: 1

Views

Author

Keywords

Comments

log(a(n)) = n*log(n)+B*n+o(n); B=-0.066275634213060706383563177025.
All prime factors of a(n) are in A002313. - Robert Israel, Mar 13 2016

Crossrefs

Programs

  • Maple
    a[0]:= 1:
    for n from 1 to 30 do a[n]:= ilcm(a[n-1],n^2+1) od:
    seq(a[i],i=1..30); # Robert Israel, Mar 13 2016
  • Mathematica
    f[x_] := x^2+1; a[1] = f[1]; a[n_] := a[n] = LCM[f[n],a[n-1]]; Table[a[n], {n,20}]
  • PARI
    a(n)=lcm(vector(n,k,k^2+1)) \\ Charles R Greathouse IV, Jul 26 2013