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.

A353414 Number of ways to write n as a product of the terms of A353355 larger than 1; a(1) = 1 by convention (an empty product).

Original entry on oeis.org

1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 2, 1, 0, 1, 3, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 3, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 2, 0, 0, 1, 3, 1, 0, 0, 1, 1, 0, 0, 4, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 2, 0, 1, 0, 0, 0, 2, 0, 1, 1, 0, 1, 3, 0, 1, 1, 2, 0, 0, 0, 1, 0
Offset: 1

Views

Author

Antti Karttunen, Apr 19 2022

Keywords

Comments

Number of factorizations of n into factors k > 1 for which A353354(k) = 0.

Examples

			Of the fourteen divisors of 144 larger than 1, only [4, 6, 8, 9, 12, 18, 36, 48, 72, 144] are in A353355. Using combinations of these, 144 can be factored in six different ways as 144 = 36*4 = 18*8 = 12*12 = 9*4*4 = 6*6*4, therefore a(144) = 6.
		

Crossrefs

Programs

  • PARI
    A332823(n) = { my(f = factor(n),u=(sum(k=1, #f~, f[k, 2]*2^primepi(f[k, 1]))/2)%3); if(2==u,-1,u); };
    A353354(n) = sumdiv(n,d,A332823(d));
    A353380(n) = (0==A353354(n));
    A353414(n, m=n) = if(1==n, 1, my(s=0); fordiv(n, d, if((d>1)&&(d<=m)&&A353380(d), s += A353414(n/d, d))); (s));

Formula

a(p) = 0 for all primes p.
a(n) = a(A003961(n)) = a(A348717(n)), for all n >= 1.