Advertisement
Guest User

Untitled

a guest
Jun 10th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. The only cells that exist on row 2 are 'e' numbers that are "Congruent to 0 or 3 mod 4." according to oeis (A014601).
  2.  
  3. For a(n) functions, n = (x+1)/2 for odd, and x/2 for even.
  4.  
  5. From (11,2) up, I would assume b = a(n+2).
  6.  
  7. Some numbers have an offset of (n+1) or (n-1) on OEIS listings, I have included the term (n+1) and substituted it inside the formula of a(n).
  8. -------------------------------------------------------------
  9.  
  10. (0,2), Even Xs from 2
  11.  
  12. d : a(n) = n*(n+2) = (n+1)^2 - 1 (A005563).
  13.  
  14. a : a(n) = n^2, b : a(n) = (n+2)^2 = a(n+2).
  15. Simply the squares.
  16.  
  17. -
  18.  
  19. (3,2), Odd Xs from 1
  20.  
  21. d : a(n) = n*(n+1) = n^2 + n (A002378).
  22. Oblong (or promic, pronic, or heteromecic) numbers.
  23.  
  24. a : a(n) = n^2 - n + 1, b : a(n+2) (A002061).
  25. Central Polygonal numbers.
  26.  
  27. -
  28.  
  29. (4,2) Even Xs from 2
  30.  
  31. d : a(n) = (n+1)^2. The squares.
  32.  
  33. a : a(n) = n^2 + 1, b : a(n+2) (A002522).
  34.  
  35. -
  36.  
  37. (7,2), Odd Xs from 3
  38.  
  39. d : a(n) = n^2 + n + 1.
  40.  
  41. a : a(n) = n^2 - n + 2, b : a(n+2).
  42.  
  43. -
  44.  
  45. (8,2), Even Xs from 2
  46.  
  47. d : a(n) = (n+1)^2 + 1 (A002522).
  48.  
  49. a : a(n) = n^2 + 2, b = a(n+2). (A059100).
  50.  
  51. -
  52.  
  53. (11,2), from 3
  54.  
  55. d : a(n) = n^2 + n + 2 (A014206).
  56.  
  57. a : a(n) = n^2 - n + 3 .
  58. -
  59.  
  60. (12,2), from 2
  61.  
  62. d : a(n) = (n+1)^2 + 2 (A059100).
  63.  
  64. a : a(n) = n^2 + 3 (A117950).
  65.  
  66. -------------------------------------------------------------
  67.  
  68. For the second row, we will define a variable as 'z' which is the same as '(n+1)', so basically ' z = n + 1 '.
  69.  
  70. As defined in the start of this text file, n = x/2 for even 'e' cells.
  71.  
  72. d = z^2 + (e-4)/4.
  73.  
  74. z = SQRT(d - (e-4)/4).
  75.  
  76. n = z - 1.
  77.  
  78. x = 2n
  79.  
  80. As we have seen in row 1, the even cell formula also works well with odd numbers of 'e', we will stick to this assumption for the rest of the rows.
  81.  
  82. These formulas defined above work well with all values where it is known that their 'n' is equal to 2, so this only works for 'n = 2'.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement