login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
Search: keyword:new
Displaying 1-10 of 410 results found. page 1 2 3 4 5 6 7 8 9 10 ... 41
     Sort: relevance | references | number | modified | created      Format: long | short | data
A355937 a(n) = 1 if the number of divisors of n is a noncomposite, otherwise 0. +0
0
1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET

1

LINKS

Table of n, a(n) for n=1..121.

Index entries for characteristic functions

Index entries for sequences computed from exponents in factorization of n

FORMULA

a(n) = A080339(A000005(n)).

MATHEMATICA

a[n_] := If[!CompositeQ[DivisorSigma[0, n]], 1, 0]; Array[a, 100] (* Amiram Eldar, Jul 21 2022 *)

PROG

(PARI) A355937(n) = ((1==n)||isprime(isprimepower(n)+1));

CROSSREFS

Characteristic function of {1} UNION A009087.

Cf. A000005, A080339.

Cf. also A355938.

KEYWORD

nonn,new

AUTHOR

Antti Karttunen, Jul 21 2022

STATUS

approved

A355938 a(n) = 1 if sigma(n^2) is a noncomposite, otherwise 0. +0
0
1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET

1

LINKS

Table of n, a(n) for n=1..125.

Index entries for characteristic functions

FORMULA

a(n) = A080339(A000203(n^2)) = A080339(A065764(n)).

For all n >= 1, a(n) <= A010055(n).

MATHEMATICA

a[n_] := If[!CompositeQ[DivisorSigma[1, n^2]], 1, 0]; Array[a, 100] (* Amiram Eldar, Jul 21 2022 *)

PROG

(PARI) A355938(n) = ((1==n)||isprime(sigma(n^2)));

CROSSREFS

Characteristic function of {1} UNION A055638.

Cf. A000203, A010055, A065764, A080339.

Cf. also A355937.

KEYWORD

nonn,new

AUTHOR

Antti Karttunen, Jul 21 2022

STATUS

approved

A355936 Dirichlet inverse of A295316, characteristic function of exponentially odd numbers. +0
0
1, -1, -1, 1, -1, 1, -1, -2, 1, 1, -1, -1, -1, 1, 1, 3, -1, -1, -1, -1, 1, 1, -1, 2, 1, 1, -2, -1, -1, -1, -1, -5, 1, 1, 1, 1, -1, 1, 1, 2, -1, -1, -1, -1, -1, 1, -1, -3, 1, -1, 1, -1, -1, 2, 1, 2, 1, 1, -1, 1, -1, 1, -1, 8, 1, -1, -1, -1, 1, -1, -1, -2, -1, 1, -1, -1, 1, -1, -1, -3, 3, 1, -1, 1, 1, 1, 1, 2, -1, 1, 1, -1, 1, 1, 1, 5, -1, -1, -1, 1, -1, -1, -1, 2, -1 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,8

COMMENTS

Multiplicative because A295316 is.

LINKS

Table of n, a(n) for n=1..105.

Index entries for sequences computed from exponents in factorization of n

FORMULA

a(1) = 1, and for n > 1, a(n) = -Sum_{d|n, d<n} A295316(n/d) * a(d).

MATHEMATICA

s[n_] := If[AllTrue[FactorInteger[n][[;; , -1]], OddQ], 1, 0]; a[1] = 1; a[n_] := -DivisorSum[n, a[#]*s[n/#] &, # < n &]; Array[a, 100] (* Amiram Eldar, Jul 21 2022 *)

PROG

(PARI)

A295316(n) = factorback(apply(e -> (e%2), factorint(n)[, 2]));

memoA355936 = Map();

A355936(n) = if(1==n, 1, my(v); if(mapisdefined(memoA355936, n, &v), v, v = -sumdiv(n, d, if(d<n, A295316(n/d)*A355936(d), 0)); mapput(memoA355936, n, v); (v)));

CROSSREFS

Cf. A268335, A295316.

Cf. also A355826.

KEYWORD

sign,mult,new

AUTHOR

Antti Karttunen, Jul 21 2022

STATUS

approved

A355747 Number of multisets that can be obtained by choosing a divisor of each positive integer from 1 to n. +0
0
1, 1, 2, 4, 10, 20, 58, 116, 320, 772, 2170, 4340, 14112, 28224, 78120 (list; graph; refs; listen; history; text; internal format)
OFFSET

0,3

LINKS

Table of n, a(n) for n=0..14.

FORMULA

a(n) = A355733(A070826(n)).

EXAMPLE

The a(0) = 1 through a(4) = 10 multisets:

  {}  {1}  {1,1}  {1,1,1}  {1,1,1,1}

           {1,2}  {1,1,2}  {1,1,1,2}

                  {1,1,3}  {1,1,1,3}

                  {1,2,3}  {1,1,1,4}

                           {1,1,2,2}

                           {1,1,2,3}

                           {1,1,2,4}

                           {1,1,3,4}

                           {1,2,2,3}

                           {1,2,3,4}

MATHEMATICA

Table[Length[Union[Sort/@Tuples[Divisors/@Range[n]]]], {n, 0, 10}]

CROSSREFS

The sum of the same integers is A000096.

The product of the same integers is A000142, Heinz number A070826.

Counting sequences instead of multisets gives A066843.

The integers themselves are the rows of A131818 (shifted).

For prime indices we have A355733, only prime factors A355744.

For prime factors instead of divisors we have A355746, factors A355537.

A000005 counts divisors.

A000040 lists the prime numbers.

A001221 counts distinct prime factors, with sum A001414.

A001222 counts prime factors with multiplicity.

Cf. A000720, A002110, A076610, A327486, A355538, A355731, A355737, A355741, A355745.

KEYWORD

nonn,more,new

AUTHOR

Gus Wiseman, Jul 20 2022

STATUS

approved

A355746 Number of different multisets that can be obtained by choosing a prime index (or a prime factor) of each integer from 2 to n. +0
0
1, 1, 1, 1, 1, 2, 2, 2, 2, 4, 4, 6, 6, 12, 20, 20, 20, 26, 26, 36, 58, 116, 116, 140, 140, 280, 280 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,6

LINKS

Table of n, a(n) for n=1..27.

FORMULA

a(n) = A355744(A070826(n)).

EXAMPLE

The a(n) multisets for n = 2, 6, 10, 12:

  {1}  {1,1,1,2,3}  {1,1,1,1,1,2,2,3,4}  {1,1,1,1,1,1,2,2,3,4,5}

       {1,1,2,2,3}  {1,1,1,1,2,2,2,3,4}  {1,1,1,1,1,2,2,2,3,4,5}

                    {1,1,1,1,2,2,3,3,4}  {1,1,1,1,1,2,2,3,3,4,5}

                    {1,1,1,2,2,2,3,3,4}  {1,1,1,1,2,2,2,2,3,4,5}

                                         {1,1,1,1,2,2,2,3,3,4,5}

                                         {1,1,1,2,2,2,2,3,3,4,5}

MATHEMATICA

primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];

Table[Length[Union[Sort/@Tuples[primeMS/@Range[2, n]]]], {n, 15}]

CROSSREFS

The sum of the same integers is A000096.

The product of the same integers is A000142, Heinz number A070826.

The integers themselves are the rows of A131818 (shifted).

Counting sequences instead of multisets: A355537, with multiplicity A327486.

Using prime indices instead of 2..n gives A355744, for sequences A355741.

The version for divisors instead of prime factors is A355747.

A000040 lists the prime numbers.

A001221 counts distinct prime factors, with sum A001414.

A001222 counts prime factors with multiplicity.

A003963 multiplies together the prime indices of n.

A056239 adds up prime indices, row sums of A112798.

Cf. A000720, A002110, A076610, A355538, A355731, A355733, A355740, A355742, A355745.

KEYWORD

nonn,more,new

AUTHOR

Gus Wiseman, Jul 20 2022

STATUS

approved

A355742 Number of ways to choose a sequence of prime-power divisors, one of each prime index of n. Product of bigomega over the prime indices of n, with multiplicity. +0
0
1, 0, 1, 0, 1, 0, 2, 0, 1, 0, 1, 0, 2, 0, 1, 0, 1, 0, 3, 0, 2, 0, 2, 0, 1, 0, 1, 0, 2, 0, 1, 0, 1, 0, 2, 0, 3, 0, 2, 0, 1, 0, 2, 0, 1, 0, 2, 0, 4, 0, 1, 0, 4, 0, 1, 0, 3, 0, 1, 0, 3, 0, 2, 0, 2, 0, 1, 0, 2, 0, 3, 0, 2, 0, 1, 0, 2, 0, 2, 0, 1, 0, 1, 0, 1, 0, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,7

COMMENTS

A prime index of n is a number m such that prime(m) divides n. The multiset of prime indices of n is row n of A112798.

LINKS

Table of n, a(n) for n=1..87.

Wikipedia, Cartesian product.

FORMULA

Totally multiplicative with a(prime(k)) = A001222(k).

EXAMPLE

The prime indices of 49 are {4,4}, and the a(49) = 4 choices are: (2,2), (2,4), (4,2), (4,4).

The prime indices of 777 are {2,4,12}, and the a(777) = 6 choices are: (2,2,2), (2,2,3), (2,2,4), (2,4,2), (2,4,3), (2,4,4).

MATHEMATICA

primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];

Table[Times@@PrimeOmega/@primeMS[n], {n, 100}]

CROSSREFS

The unordered version is A001970, row-sums of A061260.

Positions of 1's are A076610, just primes A355743.

Positions of 0's are A299174.

Allowing all divisors (not just primes) gives A355731, firsts A355732.

Choosing only prime factors (not prime-powers) gives A355741.

Counting multisets of primes gives A355744.

The case of weakly increasing primes A355745, all divisors A355735.

A000688 counts factorizations into prime powers.

A001414 adds up distinct prime factors, counted by A001221.

A003963 multiplies together the prime indices of n.

A056239 adds up prime indices, row sums of A112798, counted by A001222.

Cf. A000720, A120383, A279784, A289509, A324850, A355733, A355739, A355746.

KEYWORD

nonn,mult,new

AUTHOR

Gus Wiseman, Jul 20 2022

STATUS

approved

A355537 Number of ways to choose a sequence of prime factors, one of each integer from 2 to n. +0
0
1, 1, 1, 1, 1, 2, 2, 2, 2, 4, 4, 8, 8, 16, 32, 32, 32, 64, 64, 128, 256, 512, 512, 1024, 1024, 2048, 2048, 4096, 4096, 12288, 12288, 12288, 24576, 49152, 98304, 196608, 196608, 393216, 786432, 1572864, 1572864, 4718592, 4718592, 9437184, 18874368, 37748736 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,6

COMMENTS

Also partial products of A001221 without the first term 0, sum A013939.

For initial terms up to n = 29 we have a(n) = 2^A355538(n). The first non-power of 2 is a(30) = 12288.

LINKS

Table of n, a(n) for n=1..46.

EXAMPLE

The a(n) choices for n = 2, 6, 10, 12, with prime(k) replaced by k:

  (1)  (12131)  (121314121)  (12131412151)

       (12132)  (121314123)  (12131412152)

                (121324121)  (12131412351)

                (121324123)  (12131412352)

                             (12132412151)

                             (12132412152)

                             (12132412351)

                             (12132412352)

MATHEMATICA

Table[Times@@PrimeNu/@Range[2, m], {m, 2, 30}]

CROSSREFS

The sum of the same integers is A000096.

The product of the same integers is A000142, Heinz number A070826.

The version for divisors instead of prime factors is A066843.

The integers themselves are the rows of A131818.

The version with multiplicity is A327486.

Using prime indices instead of 2..n gives A355741, for multisets A355744.

Counting sequences instead of multisets gives A355746.

A001221 counts distinct prime factors, with sum A001414.

A001222 counts prime factors with multiplicity.

A003963 multiplies together the prime indices of n.

A056239 adds up prime indices, row sums of A112798.

Cf. A000005, A000040, A000720, A002110, A013939, A076610, A355538, A355731, A355733, A355745, A355747.

KEYWORD

nonn,new

AUTHOR

Gus Wiseman, Jul 20 2022

STATUS

approved

A355922 Decimal expansion of Sum_{k>=2} (1/k)*arctanh(1/k). +0
0
6, 7, 6, 5, 6, 5, 1, 3, 6, 1, 4, 7, 9, 6, 6, 6, 4, 0, 8, 2, 6, 4, 7, 2, 0, 1, 6, 2, 4, 6, 1, 2, 9, 8, 1, 3, 4, 5, 4, 3, 9, 5, 2, 1, 2, 1, 8, 5, 9, 5, 5, 6, 3, 2, 3, 0, 6, 0, 0, 8, 6, 1, 3, 1, 6, 5, 4, 6, 8, 5, 0, 8, 2, 4, 3, 6, 7, 5, 9, 2, 1, 1, 1, 9, 8, 2, 1 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET

0,1

LINKS

Table of n, a(n) for n=0..86.

Michael Ian Shamos, Shamos's Catalog of the Real Numbers, 2011, p. 564.

FORMULA

Equals Sum_{k>=2} arccoth(k)/k.

Equals Sum_{k>=1} (zeta(2*k)-1)/(2*k-1).

Equals log(Product_{k>=2} ((k+1)/(k-1))^(1/(2*k))).

EXAMPLE

0.67656513614796664082647201...

MATHEMATICA

RealDigits[N[Sum[ArcTanh[1/k]/k, {k, 2, Infinity}], 30], 10, 26][[1]] (* Amiram Eldar, Jul 21 2022 *)

CROSSREFS

Cf. A016655, A355921, A355923.

KEYWORD

nonn,cons,new

AUTHOR

Amiram Eldar, Jul 21 2022

EXTENSIONS

More terms from Jinyuan Wang, Jul 21 2022

STATUS

approved

A355923 Decimal expansion of Sum_{k>=2} (arctanh(1/k) - 1/k). +0
0
7, 6, 2, 1, 0, 7, 4, 4, 8, 1, 8, 4, 9, 4, 4, 8, 4, 6, 8, 4, 8, 7, 1, 8, 4, 9, 1, 8, 8, 5, 0, 9, 2, 8, 4, 9, 2, 0, 0, 9, 0, 5, 9, 6, 8, 7, 9, 9, 4, 8, 7, 7, 4, 1, 3, 3, 8, 9, 2, 7, 6, 0, 3, 6, 8, 4, 3, 5, 4, 6, 2, 2, 3, 7, 4, 8, 7, 9, 7, 1, 2, 6, 0, 1, 2, 1, 2, 7, 3, 2, 1, 0, 0, 4, 3, 9, 0, 6, 7, 1, 4, 3, 6, 7, 8 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET

-1,1

LINKS

Table of n, a(n) for n=-1..103.

Michael Ian Shamos, Shamos's Catalog of the Real Numbers, 2011, pp. 126-127.

FORMULA

Equals Sum_{k>=1} (zeta(2*k+1)-1)/(2*k+1).

Equals 1 - gamma - log(2)/2, where gamma is Euler's constant (A001620).

Equals Sum_{k>=2} ((1/2)*log((k+1)/(k-1)) - 1/k).

Equals 2 * Integral_{x>=0} x * exp(-x) * log(x) * sin(x) dx.

EXAMPLE

0.07621074481849448468487184918850928492009059687994877413...

MATHEMATICA

RealDigits[1 - EulerGamma - Log[2]/2, 10, 100][[1]]

CROSSREFS

Cf. A001620, A002162, A016655, A239097, A352619, A355922.

KEYWORD

nonn,cons,new

AUTHOR

Amiram Eldar, Jul 21 2022

STATUS

approved

A355859 Triangle read by rows: T(n,k) = (n + k)/2 if (n + k) is congruent to 0 (mod 2), otherwise T(n,k) = 0; n >= 1, k >= 1. +0
0
1, 0, 2, 2, 0, 3, 0, 3, 0, 4, 3, 0, 4, 0, 5, 0, 4, 0, 5, 0, 6, 4, 0, 5, 0, 6, 0, 7, 0, 5, 0, 6, 0, 7, 0, 8, 5, 0, 6, 0, 7, 0, 8, 0, 9, 0, 6, 0, 7, 0, 8, 0, 9, 0, 10, 6, 0, 7, 0, 8, 0, 9, 0, 10, 0, 11, 0, 7, 0, 8, 0, 9, 0, 10, 0, 11, 0, 12, 7, 0, 8, 0, 9, 0, 10, 0, 11, 0, 12, 0, 13, 0 (list; table; graph; refs; listen; history; text; internal format)
OFFSET

1,3

COMMENTS

Row sums see A001318.

LINKS

Table of n, a(n) for n=1..92.

EXAMPLE

The triangle begins:

      k=1  2  3  4  5  6

  n=1:  1;

  n=2:  0, 2;

  n=3:  2, 0, 3;

  n=4:  0, 3, 0, 4;

  n=5:  3, 0, 4, 0, 5;

  n=6:  0, 4, 0, 5, 0, 6;

  and so on.

MATHEMATICA

T[n_, k_] := If[EvenQ[n + k], (n + k)/2, 0]; Table[T[n, k], {n, 1, 13}, {k, 1, n}] // Flatten (* Amiram Eldar, Jul 19 2022 *)

CROSSREFS

Cf. A001318, A138099 (without the zeros).

KEYWORD

nonn,tabl,new

AUTHOR

Ctibor O. Zizka, Jul 19 2022

STATUS

approved

page 1 2 3 4 5 6 7 8 9 10 ... 41

Search completed in 0.166 seconds

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 21 07:45 EDT 2022. Contains 355549 sequences. (Running on oeis4.)