login
The OEIS Foundation is supported by donations from users of the OEIS and by a grant from the Simons Foundation.

 

Logo


Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
Search: keyword:new
Displaying 1-10 of 246 results found. page 1 2 3 4 5 6 7 8 9 10 ... 25
     Sort: relevance | references | number | modified | created      Format: long | short | data
A348155 a(n) = tau(n)^2 + omega(n)*(sigma(n) - tau(n)). +0
0
1, 5, 6, 13, 8, 32, 10, 27, 19, 44, 14, 80, 16, 56, 56, 51, 20, 102, 22, 108, 72, 80, 26, 168, 37, 92, 52, 136, 32, 256, 34, 93, 104, 116, 104, 245, 40, 128, 120, 228, 44, 328, 46, 192, 180, 152, 50, 328, 63, 210, 152, 220, 56, 288, 152, 288, 168, 188, 62, 612, 64, 200, 232, 169 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,2

COMMENTS

For each ordered pair of divisors of n, (d1,d2), a(n) can also be found using the algorithm: add d1 if d2 is prime; otherwise add 1. For example, when n = 4 the divisor pairs are: (1,1), (1,2), (1,4), (2,1), (2,2), (2,4), (4,1), (4,2), (4,4) which gives 1 + 1 + 1 + 1 + 2 + 1 + 1 + 4 + 1 = 13.

LINKS

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

FORMULA

a(n) = Sum_{d1|n} Sum_{d2|n} d1^c(d2), where c = A010051.

a(prime(n)) = prime(n) + 3.

MATHEMATICA

Table[DivisorSigma[0, n] (DivisorSigma[0, n] - PrimeNu[n]) + PrimeNu[n] DivisorSigma[1, n], {n, 80}]

PROG

(PARI) a(n) = my(f=factor(n), d=numdiv(f)); d^2 + omega(f)*(sigma(f) - d); \\ Michel Marcus, Oct 05 2021

CROSSREFS

Cf. A000005 (tau), A000040 (n-th prime), A000203 (sigma), A001221 (omega), A010051 (prime characteristic).

KEYWORD

nonn,new

AUTHOR

Wesley Ivan Hurt, Oct 03 2021

STATUS

approved

A347854 a(n) = (6*n)!/((3*n)!*(2*n)!) * (n/2)!/(3*n/2)!. +0
0
1, 40, 4620, 622336, 89237148, 13236695040, 2005604901300, 308350245273600, 47913489552349980, 7505566011722039296, 1183237138556438547120, 187495217080545878999040, 29836408028165719837829700, 4764790302634058161217077248 (list; graph; refs; listen; history; text; internal format)
OFFSET

0,2

COMMENTS

Fractional factorials are defined using the Gamma function; for example, (n/2)! := Gamma(1 + n/2).

The sequence defined by u(n) = (12*n)!*n!/((6*n)!*(4*n)!*(3*n)!) is one of the 52 sporadic integral factorial ratio sequences of height 1 found by V. I. Vasyunin (see Bober, Table 2, Entry 1). See A295431. It is known that u(n) is integral and satisfies the congruences u(n*p) == u(n) ( mod p^3 ) for prime p >= 5 and any positive integer n (Zudilin, Section 5); the o.g.f. Sum_{n >= 0} u(n)*x^n is algebraic over Q(x) (Rodriguez-Villegas).

Here we are essentially considering the sequence ( u(n/2) )n>=0. The sequence is conjectured to be integral.

LINKS

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

P. Bala, Some integer ratios of factorials

J. W. Bober, Factorial ratios, hypergeometric series, and a family of step functions, arXiv:0709.1977 [math.NT], 2007; J. London Math. Soc., Vol. 79, Issue 2 (2009), 422-444.

F. Rodriguez-Villegas, Integral ratios of factorials and algebraic hypergeometric functions, arXiv:math/0701362 [math.NT], 2007.

Wadim Zudilin, Congruences for q-binomial coefficients, arXiv:1901.07843 [math.NT], 2019.

FORMULA

a(n) = binomial(6*n,2*n)*binomial(4*n,n)/binomial(3*n/2,n).

a(2*n) = A295431(n).

a(2*n) = 24*(12*n - 1)*(12*n - 5)*(12*n - 7)*(12*n - 11)/( n*(2*n - 1)*(3*n - 1)*(3*n - 2) )*a(2*n-2);

a(2*n+1) = 96*(12*n + 1)*(12*n - 1)*(12*n + 5)*(12*n - 5)/( n*(2*n + 1)*(6*n + 1)*(6*n - 1) )*a(2*n-1).

Asymptotics: a(n) ~ 32^n/sqrt(6*Pi*n) * 3^(3*n/2) as n -> infinity.

O.g.f.: A(x) = hypergeom([1/12, 5/12, 7/12, 11/12], [1/3, 1/2, 2/3], 27648*x^2) + 40*x*hypergeom([11/12, 13/12, 7/12, 17/12], [3/2, 5/6, 7/6], 27648*x^2) is conjectured to be algebraic over Q(x).

Conjectural: a(n*p^k) == a(n*p^(k-1)) ( mod p^(3*k) ) for  prime p >= 5 and positive integers n and k.

EXAMPLE

a(11) - a(1) = 187495217080545878999040 - 40 = (2^3)*(5^3)*(11^3)*140867931690868429 == 0 (mod 11^3).

MAPLE

seq(binomial(6*n, 2*n)*binomial(4*n, n)/binomial(3*n/2, n), n = 0..13);

CROSSREFS

Cf. A295431, A347855 - A347858.

KEYWORD

nonn,easy,new

AUTHOR

Peter Bala, Sep 16 2021

STATUS

approved

A348149 Variation of the Barnyard sequence A347581: a(n) is the minimum number of unit length line segments required to enclose areas of 1 through n on a square grid when the number of segments is minimized as each area of incrementing size, starting at 1, is added. +0
0
4, 9, 14, 20, 26, 33, 40, 48, 55, 64 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,1

COMMENTS

In this variation of A347581 the areas must be added in the order of their sizes, from 1 through n, and as each area is added the minimum possible number of line segments must be used. This forces, for example, the first three areas of size 1,2 and 3 to form a 2x3 block and thus they can never appear in any other arrangement in the final area. This is also true for n up to at least 9 due to the restriction of maximizing the usable edges for the next area. This leads to a(8) and a(10) contain one more line segment than the optimal solutions of A347581.

LINKS

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

Sascha Kurz, Counting polyominoes with minimum perimeter, arXiv:math/0506428 [math.CO], 2015.

EXAMPLE

Examples of n = 1 to n = 10 are given below. Note that for a(3) the configuration could also consist of the area of size 1 sitting above the area of size 2 with the area of size 3 forming an L shaped block creating the minimal 2x3 block.

.

   __

  |__|  a(1) = 4

   __ __ __

  |__|__ __|  a(2) = 9

   __ __ __

  |__|__ __|  a(3) = 14

  |__ __ __|

   __ __ __

  |__|__ __|

  |__ __ __|  a(4) = 20

  |     |

  |__ __|

   __ __ __

  |__|__ __|__

  |__ __ __|  |  a(5) = 26

  |     |     |

  |__ __|__ __|

   __ __ __

  |__|__ __|__ __ __

  |__ __ __|  |     |  a(6) = 33

  |     |     |     |

  |__ __|__ __|__ __|

         __ __ __ __

   __ __|__         |

  |__|__ __|__ __ __|

  |__ __ __|  |     |  a(7) = 40

  |     |     |     |

  |__ __|__ __|__ __|

         __ __ __ __

        |           |

        |__ __ __ __|

   __ __|__         |

  |__|__ __|__ __ __|  a(8) = 48

  |__ __ __|  |     |

  |     |     |     |

  |__ __|__ __|__ __|

   __ __ __ __ __ __ __

  |        |           |

  |        |__ __ __ __|

  |__ __ __|__         |

     |__|__ __|__ __ __|  a(9) = 55

     |__ __ __|  |     |

     |     |     |     |

     |__ __|__ __|__ __|

      __ __ __ __ __ __ __

     |        |           |

     |        |__ __ __ __|

   __|__ __ __|__         |

  |     |__|__ __|__ __ __|  a(10) = 64

  |     |__ __ __|  |     |

  |     |     |     |     |

  |     |__ __|__ __|__ __|

  |__ __|

.

CROSSREFS

Cf. A347581, A001168, A291808, A291809, A328020, A291806, A006983.

KEYWORD

nonn,more,new

AUTHOR

Scott R. Shannon, Oct 03 2021

STATUS

approved

A348057 Number of n-step self-avoiding walks on three quadrants of a 2D square lattice. +0
0
1, 4, 10, 28, 74, 202, 534, 1442, 3822, 10258, 27202, 72718, 192840, 514228, 1363342, 3629316, 9619264, 25575326, 67765590, 180001304, 476807826, 1265567600, 3351529410, 8890447682, 23538665948, 62409037914, 165202281046 (list; graph; refs; listen; history; text; internal format)
OFFSET

0,2

LINKS

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

EXAMPLE

a(2) = 10. Assuming the lower left quadrant is the one removed then a walk of left-down or down-left is not permitted, so the total number of 2-step walks is 4 * 3 - 2 = 10.

CROSSREFS

Cf. A001411 (four quadrants), A116903 (two quadrants), A038373 (one quadrant), A129700 (half quadrant).

KEYWORD

nonn,walk,new

AUTHOR

Scott R. Shannon, Sep 26 2021

STATUS

approved

A348026 The numbers visited on a square spiral when stepping to the smallest unvisited number that does not differ by 1 from the current number, is visible from the current number, and does not share a divisor > 1 with the current number. +0
0
1, 3, 8, 5, 2, 7, 4, 9, 11, 14, 19, 6, 13, 18, 23, 10, 17, 12, 29, 15, 22, 27, 16, 21, 32, 39, 20, 31, 24, 35, 26, 33, 25, 28, 41, 34, 45, 38, 47, 30, 37, 44, 51, 40, 57, 46, 53, 42, 55, 36, 43, 52, 49, 54, 59, 50, 61, 48, 65, 56, 67, 58, 69, 62, 73, 60, 71, 64, 75, 68, 63, 74, 83, 70, 81, 85 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,2

COMMENTS

A number is visible from the current number if, given that it has coordinates (x,y) relative to the current number, the greatest common divisor of |x| and |y| is 1. The sequence has a(2) = 3 as that is the smallest number visible from a(1) = 1 that does not differ by 1 from a(1).

The majority of steps between terms are diagonals across the current number's nearest corner of the square spiral and thus do not approach the center of the spiral. Occasionally, however, a long diagonal step directly across the center of the spiral is taken. See the linked image.

In the first 20000 terms the longest single step is the one at n = 19534 of length sqrt(38365) units between 19743 at coordinates (-68,-70), to 19460 at coordinates (70,69). This step also yields the maximum difference between terms in the same range.

LINKS

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

Scott R. Shannon, Image of the path for the first 20000 terms. The colors are graduated across the spectrum to show the relative step order.

EXAMPLE

The square spiral is numbered as follows:

.

  17--16--15--14--13   .

   |               |   .

  18   5---4---3  12  29

   |   |       |   |   |

  19   6   1---2  11  28

   |   |           |   |

  20   7---8---9--10  27

   |                   |

  21--22--23--24--25--26

.

a(3) = 8 as gcd(8,3) = 1 and 8 is unvisited, visible from 3, and does not equal 2 or 4.

a(4) = 5 as gcd(5,8) = 1 and 5 is unvisited, visible from 8, and does not equal 7 or 9.

a(5) = 2 as gcd(2,5) = 1 and 2 is unvisited, visible from 5, and does not equal 4 or 6.

CROSSREFS

Cf. A348022, A331400, A335661, A063826, A332767, A347358, A335661.

KEYWORD

nonn,new

AUTHOR

Scott R. Shannon, Sep 25 2021

STATUS

approved

A348025 The numbers visited on a square spiral when stepping to the smallest unvisited number that is not visible from and shares a divisor > 1 with the current number. Start with 1 and 11. +0
0
1, 11, 55, 15, 21, 3, 9, 27, 30, 2, 6, 14, 16, 10, 4, 8, 12, 18, 20, 32, 34, 28, 22, 24, 26, 36, 33, 39, 42, 38, 40, 46, 44, 48, 45, 5, 25, 65, 13, 91, 7, 35, 49, 105, 51, 17, 153, 57, 19, 114, 50, 52, 54, 56, 66, 68, 62, 58, 29, 87, 84, 60, 63, 69, 23, 161, 77, 99, 93, 31, 124, 70, 72 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,2

COMMENTS

A number is not visible from the current number if, given it has coordinates (x,y) relative to the current number, the greatest common divisor of |x| and |y| is greater than 1. The sequence has a(2) = 11 as that is the smallest number not visible from a(1) = 1.

In the first 10000 terms the longest single step is one at n = 6888 of length sqrt(22556) units between 22203 to 7389. The maximum difference between terms in the same range is from 3469 to 58973 at n = 9709.

LINKS

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

Scott R. Shannon, Image of the path for the first 10000 terms. The colors are graduated across the spectrum to show the relative step order.

EXAMPLE

The square spiral is numbered as follows:

.

  17--16--15--14--13   .

   |               |   .

  18   5---4---3  12   29

   |   |       |   |   |

  19   6   1---2  11   28

   |   |           |   |

  20   7---8---9--10   27

   |                   |

  21--22--23--24--25--26

.

a(3) = 55 as gcd(55,11) = 11 and 55 is unvisited and not visible from 11, being blocked by 29.

a(4) = 15 as gcd(15,55) = 5 and 15 is unvisited and not visible from 55, being blocked by 13, 14 and 30.

a(5) = 21 as gcd(21,15) = 3 and 21 is unvisited and not visible from 15, being blocked by 6.

CROSSREFS

Cf. A348022 (visible), A331400, A335661, A063826, A332767.

KEYWORD

nonn,new

AUTHOR

Scott R. Shannon, Sep 25 2021

STATUS

approved

A348022 The numbers visited on a square spiral when stepping to the smallest unvisited number that is visible from and shares a divisor > 1 with the current number. Start with 1 and 2. +0
0
1, 2, 4, 6, 3, 12, 9, 15, 5, 10, 14, 7, 21, 27, 18, 16, 8, 22, 11, 33, 30, 20, 24, 32, 26, 13, 39, 36, 28, 35, 25, 40, 44, 38, 19, 76, 34, 17, 68, 42, 45, 51, 48, 57, 66, 55, 60, 46, 23, 92, 58, 50, 62, 31, 155, 70, 49, 56, 63, 72, 64, 52, 65, 78, 54, 69, 84, 75, 85, 80, 94, 47, 188 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,2

COMMENTS

A number is visible from the current number if, given it has coordinates (x,y) relative to the current number, the greatest common divisor of |x| and |y| equals 1. See A331400 for the points visible from the starting 1 number.

In the first 10000 terms the longest single step is one at n = 9942 of length sqrt(22570) units between 31002 to 10258. The maximum difference between terms in the same range is from 5171 to 36197 at n = 9977.

LINKS

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

Scott R. Shannon, Image of the path for the first 10000 terms. The colors are graduated across the spectrum to show the relative step order.

EXAMPLE

The square spiral is numbered as follows:

.

  17--16--15--14--13   .

   |               |   .

  18   5---4---3  12   29

   |   |       |   |   |

  19   6   1---2  11   28

   |   |           |   |

  20   7---8---9--10   27

   |                   |

  21--22--23--24--25--26

.

a(3) = 4 as gcd(4,2) = 2 and 4 is unvisited and visible from 2.

a(4) = 6 as gcd(4,6) = 2 and 6 is unvisited and visible from 4.

a(5) = 3 as gcd(3,6) = 3 and 3 is unvisited and visible from 6.

a(6) = 12 as gcd(12,3) = 3 and 12 is unvisited and visible from 3. Note although 9 is unvisited and gcd(9,3) = 3 it is not visible from 3 due to 2.

CROSSREFS

Cf. A348025 (not visible), A331400, A335661, A063826, A332767, A347358.

KEYWORD

nonn,new

AUTHOR

Scott R. Shannon, Sep 25 2021

STATUS

approved

A347984 Variation of the Enots Wolley sequence A336957: earliest infinite sequence of distinct positive integers such that a(n) has a common factor with a(n-1) but not with a(n-2), and has a different number of divisors than a(n-1). +0
0
1, 2, 6, 45, 35, 28, 22, 99, 15, 20, 14, 63, 33, 44, 10, 75, 21, 56, 26, 117, 51, 68, 38, 171, 39, 52, 34, 153, 57, 76, 40, 55, 231, 12, 46, 575, 65, 78, 58, 725, 85, 102, 62, 775, 95, 114, 69, 805, 50, 24, 87, 1015, 77, 66, 60, 115, 1127, 42, 74, 925, 105, 18, 82, 1025, 135, 36, 86, 1075, 145 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,2

COMMENTS

This sequence uses the same rules as A336957 except with the additional restriction that a(n) must have a different number of divisors than a(n-1). This leads to the terms showing a greater variation in value. For example in the first 5000 terms the maximum is a(3915) = 228569, compared to a maximum of a(3225) = 11053 for A336957 in the same range. Like A336957 is it likely all positive integers other than the prime-powers eventually appear.

LINKS

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

EXAMPLE

a(4) = 45, as a(4) must share a factor with a(3) = 6, have a prime factor not in 6, have no common factor with a(2) = 2, and not have tau(6) = 4 divisors. The smallest positive integer satisfying these conditions is 45. Note that A336957(4) = 15, but 15 has four divisors thus cannot be chosen here.

CROSSREFS

Cf. A336957, A000005, A098550, A064413.

KEYWORD

nonn,new

AUTHOR

Scott R. Shannon, Sep 27 2021

STATUS

approved

A348189 Pseudo-involutory Riordan companion of 1 + 2*x*M(x), where M(x) is the g.f. of A001006. +0
0
1, 0, 0, 2, 0, 6, 8, 24, 60, 148, 396, 1026, 2744, 7350, 19872, 54102, 148104, 407682, 1127328, 3130542, 8726256, 24407634, 68482776, 192698124, 543642476, 1537443024, 4357677516, 12376868254, 35221087656, 100409367690, 286730523104, 820078634232, 2348966799132 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,4

LINKS

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

FORMULA

G.f.: A(x) = (1 - sqrt(1 - 2*x - 3*x^2))/(x*(2 + x - sqrt(1 - 2*x - 3*x^2))).

If M(x) is the g.f. of A001006, then A(x) = (1 + 2*x*M(x))/(1 + 2*x + 2*x^2*M(x)).

Let M(x) be the g.f. of A001006 and F(x) = 1 + 2*x*M(x) (equivalently, x*F(x) = g.f. of A007971). Then F(-x*A(x)) = 1/F(x).

A(-x*A(x)) = 1/A(x).

MATHEMATICA

a[n_] := SeriesCoefficient[(1 - Sqrt[1-2*x-3*x^2])/(x * (2 + x - Sqrt[1-2*x-3*x^2])), {x, 0, n}]; Array[a, 33, 0] (* Amiram Eldar, Oct 06 2021 *)

PROG

(PARI) my(x='x+O('x^35)); Vec((1-sqrt(1-2*x-3*x^2))/(x*(2+x-sqrt(1-2*x-3*x^2)))) \\ Michel Marcus, Oct 06 2021

CROSSREFS

Cf. A001006, A007971, A086246.

KEYWORD

nonn,new

AUTHOR

Alexander Burstein, Oct 06 2021

STATUS

approved

A348181 a(n) is the number of (strict) chains of subspaces with ends 0 and (F_5)^n, counted up to coordinate permutation. +0
0
1, 5, 59, 2360, 369540, 258838575 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,2

LINKS

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

FORMULA

a(n) = Sum_{L partition of n} A348180(n, L) * A036038(len(L), sig(L)), where sig(L) is the partition composed by the part multiplicities of L.

CROSSREFS

Cf. A348180, A036038, A347843, A348116-A348118.

KEYWORD

more,nonn,new

AUTHOR

Álvar Ibeas, Oct 05 2021

STATUS

approved

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

Search completed in 0.098 seconds

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

License Agreements, Terms of Use, Privacy Policy. .

Last modified October 6 14:40 EDT 2021. Contains 347851 sequences. (Running on oeis4.)