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.

A371213 Number of ordered factorizations of n into factors > 5.

Original entry on oeis.org

1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 2, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 3, 1, 1, 3, 2, 1, 3, 1, 1, 1, 3, 1, 5, 1, 1, 1, 1, 3, 3, 1, 3, 2, 1, 1, 5, 1, 1, 1, 3, 1, 5, 3, 1, 1, 1, 1, 5, 1, 3, 3, 2, 1, 3, 1, 3, 3, 1, 1, 5
Offset: 1

Views

Author

Ilya Gutkovskiy, Mar 15 2024

Keywords

Examples

			a(42) = 3: 42 = 6*7 = 7*6.
		

Crossrefs

Programs

  • Mathematica
    a[n_] := a[n] = If[n == 1, n, Sum[If[n/d > 5, a[d], 0], {d, Divisors[n]}]]; Table[a[n], {n, 1, 96}]
  • PARI
    memoA371213 = Map();
    A371213(n) = if(1==n,1,my(v); if(mapisdefined(memoA371213,n,&v), v, v = sumdiv(n,d,if((n/d)<=5, 0, A371213(d))); mapput(memoA371213,n,v); (v))); \\ Antti Karttunen, Jan 13 2025

Formula

a(1) = 1; a(n) = Sum_{d|n, n/d > 5} a(d).

Extensions

More terms from Antti Karttunen, Jan 13 2025