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.

A300409 Number of centered triangular numbers dividing n.

Original entry on oeis.org

1, 1, 1, 2, 1, 1, 1, 2, 1, 2, 1, 2, 1, 1, 1, 2, 1, 1, 2, 3, 1, 1, 1, 2, 1, 1, 1, 2, 1, 2, 2, 2, 1, 1, 1, 2, 1, 2, 1, 3, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 1, 1, 2, 2, 1, 1, 3, 1, 2, 1, 3, 1, 1, 1, 2, 1, 2, 1, 2, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 2, 2, 1, 1, 2, 1, 2, 1, 3, 2, 1, 2, 2, 1, 1, 1, 3
Offset: 1

Views

Author

Ilya Gutkovskiy, Mar 05 2018

Keywords

Examples

			a(20) = 3 because 20 has 6 divisors {1, 2, 4, 5, 10, 20} among which 3 divisors {1, 4, 10} are centered triangular numbers.
		

Crossrefs

Programs

  • Maple
    N:= 100: # for a(1)..a(N)
    V:= Vector(N,1):
    for k from 1 do
      m:= 3*k*(k+1)/2+1;
      if m > N then break fi;
      r:= [seq(i,i=m..N,m)];
      V[r]:= map(t->t+1, V[r]);
    od:
    convert(V,list); # Robert Israel, Mar 05 2018
  • Mathematica
    nmax = 100; Rest[CoefficientList[Series[Sum[x^(3 k (k + 1)/2 + 1)/(1 - x^(3 k (k + 1)/2 + 1)), {k, 0, nmax}], {x, 0, nmax}], x]]

Formula

G.f.: Sum_{k>=0} x^(3*k*(k+1)/2+1)/(1 - x^(3*k*(k+1)/2+1)).
Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = A306324 = 1.5670651... . - Amiram Eldar, Jan 02 2024